From 6d32be3eb35a005445c50c164235954e29c459fc Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Sat, 15 Dec 2018 22:34:43 +0500 Subject: [PATCH] initial setup of Azure Pipelines --- azure-pipelines.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..9d91f304 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +pool: + vmImage: 'Ubuntu 16.04' + +variables: + CPACK_GENERATOR: DEB + +steps: +- checkout: self + submodules: recursive + +- script: | + sudo apt -y install cmake gcc g++ libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev + ./configure + make package -C tmp -j $(nproc || sysctl -n hw.ncpu || echo 4) + .ci/appveyor-deb-install-test.sh + displayName: 'Ubuntu 16.04'