Skip to content

Commit

Permalink
Merge pull request #170 from gsnw/develop
Browse files Browse the repository at this point in the history
Add Azure Pipline jobs
  • Loading branch information
schweikert committed Feb 23, 2020
2 parents aba0424 + 5b5fa55 commit 659d3d8
Showing 1 changed file with 24 additions and 19 deletions.
43 changes: 24 additions & 19 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
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'
jobs:
- job: linux_build
displayName: Linux Build

- script: |
ci/build-1-autotools.sh
curl -L http://cpanmin.us | perl - --sudo App::cpanminus
cpanm --sudo Test::Command
displayName: install
pool: Hosted Ubuntu 1604
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-
displayName: 'before_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'
- 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'

0 comments on commit 659d3d8

Please sign in to comment.