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

38 lines
947 B
YAML
Raw Normal View History

2024-06-15 18:31:25 +03:00
name: Linux
2024-04-07 18:16:45 +03:00
on: [push, pull_request]
permissions:
contents: read
jobs:
build_and_test:
2024-06-15 18:31:25 +03:00
name: Build
2024-04-07 18:16:45 +03:00
runs-on: ubuntu-latest
steps:
2024-06-15 18:31:25 +03:00
2024-04-07 18:16:45 +03:00
- uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
2024-06-15 18:31:25 +03:00
run: sudo apt-get update && sudo apt-get -y install cmake gcc g++ ninja-build libncurses5-dev libreadline-dev libsodium-dev libssl-dev make zlib1g-dev liblz4-dev libnl-genl-3-dev
2024-04-07 18:16:45 +03:00
- name: Build
run: |
mkdir build
cd build
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
cmake --build .
- name: Build deb packages
run: |
cd build
cpack -C Release -G DEB
- name: Test
run: |
.ci/appveyor-deb-install-test.sh
sudo apt-get -y install autoconf libtool liblzo2-dev libpam-dev fping unzip libcap-ng-dev # To build OpenVPN
sudo .ci/start-se-openvpn.sh
sudo .ci/run-openvpn-tests.sh