-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from gsnw/develop
Create Azure Pipline Testbuild without test-14-ping-internet-hosts.pl
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' |