1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00
SoftEtherVPN/.gitlab-ci.yml

41 lines
877 B
YAML
Raw Normal View History

.ubuntu: &ubuntu_def
before_script:
- REPOSITORY="$PWD" && cd ..
2018-08-15 00:43:27 +03:00
- apt-get update && apt-get install -y wget g++ gcc libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev git file
- wget https://cmake.org/files/v3.12/cmake-3.12.1.tar.gz && tar -xzvf cmake-3.12.1.tar.gz
- cd cmake-3.12.1 && ./bootstrap && make install
- cd "$REPOSITORY" && git submodule update --init --recursive
script:
2018-08-10 18:06:14 +03:00
- ./configure
- make package -C tmp
bionic:
<<: *ubuntu_def
image: ubuntu:bionic
variables:
CMAKE: cmake
xenial:
<<: *ubuntu_def
image: ubuntu:xenial
variables:
CMAKE: cmake
trusty:
<<: *ubuntu_def
image: ubuntu:trusty
variables:
CMAKE: cmake3
#
# there's no cmake3 for 12.04
# maybe, there's ppa ?
#
#precise:
# <<: *ubuntu_def
# image: ubuntu:precise
# variables:
# CMAKE: cmake3