mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Merge PR #896: introduce cirrus-ci builds
This commit is contained in:
commit
afa93c8b84
@ -16,6 +16,7 @@ skip_commits:
|
|||||||
- .travis.yml
|
- .travis.yml
|
||||||
- .gitlab-ci.yml
|
- .gitlab-ci.yml
|
||||||
- .azure-pipelines.yml
|
- .azure-pipelines.yml
|
||||||
|
- .cirrus.yml
|
||||||
|
|
||||||
init:
|
init:
|
||||||
- ps: Update-AppveyorBuild -Version "build-$env:APPVEYOR_BUILD_NUMBER-$($env:APPVEYOR_REPO_COMMIT.substring(0,7))"
|
- ps: Update-AppveyorBuild -Version "build-$env:APPVEYOR_BUILD_NUMBER-$($env:APPVEYOR_REPO_COMMIT.substring(0,7))"
|
||||||
|
12
.cirrus.yml
Normal file
12
.cirrus.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
FreeBSD_task:
|
||||||
|
freebsd_instance:
|
||||||
|
image: freebsd-12-0-release-amd64
|
||||||
|
env:
|
||||||
|
ASSUME_ALWAYS_YES: TRUE # required for unattanded "pkg" invocation
|
||||||
|
install_script:
|
||||||
|
- pkg install cmake gmake openssl111 git
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
script:
|
||||||
|
- ./configure
|
||||||
|
- gmake -j $(nproc || sysctl -n hw.ncpu || echo 4) -C tmp
|
||||||
|
- ldd build/vpnserver
|
@ -6,6 +6,7 @@
|
|||||||
- .appveyor.yml
|
- .appveyor.yml
|
||||||
- .travis.yml
|
- .travis.yml
|
||||||
- .azure-pipelines.yml
|
- .azure-pipelines.yml
|
||||||
|
- .cirrus.yml
|
||||||
before_script:
|
before_script:
|
||||||
- REPOSITORY="$PWD" && cd ..
|
- REPOSITORY="$PWD" && cd ..
|
||||||
- apt-get update && apt-get install -y dpkg-dev 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
|
||||||
|
Loading…
Reference in New Issue
Block a user