You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
jobs:
|
|
|
|
- job: linux_build
|
|
|
|
displayName: Linux Build
|
|
|
|
|
|
|
|
pool:
|
|
|
|
name: Azure Pipelines
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install libcap2-bin libtest-command-perl
|
|
|
|
displayName: 'before_install'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
ci/build-4-compile.sh
|
|
|
|
displayName: install
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
set -ex
|
|
|
|
PATH=`pwd`/src:$PATH
|
|
|
|
prove $(ls ci/test-*.pl|grep -v internet-hosts|grep -v -E "test-13-unknown-host.pl|test-14-ping-internet-hosts.pl")
|
|
|
|
ci/test-tarball.sh
|
|
|
|
displayName: 'build_test'
|
|
|
|
|
|
|
|
- job: macos_build
|
|
|
|
displayName: macOS Build
|
|
|
|
|
|
|
|
pool:
|
|
|
|
name: Azure Pipelines
|
|
|
|
vmImage: 'macos-latest'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
brew install autoconf automake lcov
|
|
|
|
ci/build-2-test-command.sh
|
|
|
|
ci/build-3-prepare-macos.sh
|
|
|
|
displayName: 'before_install'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
ci/build-4-compile.sh
|
|
|
|
displayName: install
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
set -ex
|
|
|
|
PATH=`pwd`/src:$PATH
|
|
|
|
export SKIP_IPV6=1
|
|
|
|
prove $(ls ci/test-*.pl|grep -v internet-hosts|grep -v test-10-option-u-x.pl)
|
|
|
|
ci/run-lcov.sh
|
|
|
|
displayName: 'build_test'
|