From: German Service Network Date: Sat, 27 Jul 2019 20:01:22 +0000 (+0200) Subject: Create Azure Pipline Testbuild without test-14-ping-internet-hosts.pl X-Git-Url: https://git.gsnw.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a77e2e6c182a8ec2f1f46fdab9af12b93688db37;p=fping.git Create Azure Pipline Testbuild without test-14-ping-internet-hosts.pl --- diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..be4eb04 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +pool: + name: Hosted Ubuntu 1604 +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- + displayName: 'before_install' + +- script: | + ci/build-1-autotools.sh + curl -L http://cpanmin.us | perl - --sudo App::cpanminus + cpanm --sudo Test::Command + 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 + ci/test-tarball.sh + displayName: 'build_test'