1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-09 19:20:41 +03:00

Merge PR #635: Add recursive checkout to gitlab-ci, also specify g++ as build dependency

This commit is contained in:
Davide Beatrici 2018-08-11 14:20:36 +02:00 committed by GitHub
commit a73fb8c4e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
.ubuntu: &ubuntu_def
before_script:
- apt-get update && apt-get install -y debhelper devscripts fakeroot ${CMAKE} dh-exec gcc libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev git
- apt-get update && apt-get install -y ${CMAKE} g++ gcc libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev git file
- git submodule update --init --recursive
script:
- ./configure
- make package -C tmp

View File

@ -36,7 +36,7 @@ sudo yum -y install cmake ncurses-devel openssl-devel readline-devel zlib-devel
## Install Requirements on Debian/Ubuntu
```bash
sudo apt -y install cmake gcc libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev
sudo apt -y install cmake gcc g++ libncurses5-dev libreadline-dev libssl-dev make zlib1g-dev
```