1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-06 07:44:57 +03:00

Move Azure Pipelines configurations into dedicated directory

This commit is contained in:
Davide Beatrici
2021-02-19 06:16:51 +01:00
parent 272ec5a8ef
commit 943ddadd3d
5 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,19 @@
jobs:
- job: ubuntu_x86_64
displayName: 'Ubuntu (x86_64)'
pool:
vmImage: ubuntu-16.04
steps:
- script: |
cd $BUILD_BINARIESDIRECTORY
sudo apt -y install cmake gcc g++ ninja-build libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=RelWithDebInfo $BUILD_SOURCESDIRECTORY
cmake --build .
cpack -C Release -G DEB
displayName: 'Build'
- script: |
.ci/appveyor-deb-install-test.sh
sudo apt-get -y install autoconf libtool liblzo2-dev libpam-dev fping unzip # To build OpenVPN
sudo BUILD_BINARIESDIRECTORY=$BUILD_BINARIESDIRECTORY .ci/start-se-openvpn.sh
sudo BUILD_BINARIESDIRECTORY=$BUILD_BINARIESDIRECTORY .ci/run-openvpn-tests.sh
displayName: 'Test'