From f2b2cdf620863751c7c7d5aca0dadc4c2057a929 Mon Sep 17 00:00:00 2001 From: German Service Network Date: Fri, 7 Aug 2020 20:30:11 +0200 Subject: [PATCH] Update Azure Pipline based on travis-ci tuning --- azure-pipelines.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7a76f27..115b65e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,25 +2,25 @@ jobs: - job: linux_build displayName: Linux Build - pool: Hosted Ubuntu 1604 + pool: + name: Azure Pipelines + vmImage: 'ubuntu-latest' workspace: clean: all steps: - script: | sudo apt-get update -qq - sudo apt-get install libcap2-bin - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- + sudo apt-get install libcap2-bin libtest-command-perl displayName: 'before_install' - script: | - ci/build-1-autotools.sh - curl -L http://cpanmin.us | perl - --sudo App::cpanminus - cpanm --sudo Test::Command + ci/build-4-compile.sh displayName: install - script: | - ci/build-2-install.sh - env PATH=`pwd`/src:$PATH prove ci/test-{01..13}*.pl - env PATH=`pwd`/src:$PATH prove ci/test-15*.pl + set -ex + PATH=`pwd`/src:$PATH + prove ci/test-{01..12}*.pl + prove ci/test-15*.pl ci/test-tarball.sh displayName: 'build_test'