mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 09:29:52 +03:00
gitlab-ci: install dpkg-dev for better dependency management,
move 3.12.1 to variable
This commit is contained in:
parent
b029676b67
commit
1062d600b4
@ -1,9 +1,11 @@
|
|||||||
.ubuntu: &ubuntu_def
|
.ubuntu: &ubuntu_def
|
||||||
|
variables:
|
||||||
|
CMAKE_VERSION: 3.12.1
|
||||||
before_script:
|
before_script:
|
||||||
- REPOSITORY="$PWD" && cd ..
|
- REPOSITORY="$PWD" && cd ..
|
||||||
- apt-get update && apt-get install -y wget g++ gcc libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev git file
|
- apt-get update && apt-get install -y dpkg-dev 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
|
- wget https://cmake.org/files/v${CMAKE_VERSION%.*}/cmake-${CMAKE_VERSION}.tar.gz && tar -xzf cmake-${CMAKE_VERSION}.tar.gz
|
||||||
- cd cmake-3.12.1 && ./bootstrap && make install
|
- cd cmake-${CMAKE_VERSION} && ./bootstrap && make install
|
||||||
- cd "$REPOSITORY" && git submodule update --init --recursive
|
- cd "$REPOSITORY" && git submodule update --init --recursive
|
||||||
script:
|
script:
|
||||||
- ./configure
|
- ./configure
|
||||||
@ -12,21 +14,14 @@
|
|||||||
bionic:
|
bionic:
|
||||||
<<: *ubuntu_def
|
<<: *ubuntu_def
|
||||||
image: ubuntu:bionic
|
image: ubuntu:bionic
|
||||||
variables:
|
|
||||||
CMAKE: cmake
|
|
||||||
|
|
||||||
xenial:
|
xenial:
|
||||||
<<: *ubuntu_def
|
<<: *ubuntu_def
|
||||||
image: ubuntu:xenial
|
image: ubuntu:xenial
|
||||||
variables:
|
|
||||||
CMAKE: cmake
|
|
||||||
|
|
||||||
trusty:
|
trusty:
|
||||||
<<: *ubuntu_def
|
<<: *ubuntu_def
|
||||||
image: ubuntu:trusty
|
image: ubuntu:trusty
|
||||||
variables:
|
|
||||||
CMAKE: cmake3
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# there's no cmake3 for 12.04
|
# there's no cmake3 for 12.04
|
||||||
@ -35,6 +30,4 @@ trusty:
|
|||||||
#precise:
|
#precise:
|
||||||
# <<: *ubuntu_def
|
# <<: *ubuntu_def
|
||||||
# image: ubuntu:precise
|
# image: ubuntu:precise
|
||||||
# variables:
|
|
||||||
# CMAKE: cmake3
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user