1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

add basic OpenSUSE workflow

This commit is contained in:
Ilya Shipitsin 2020-12-19 02:54:44 +05:00
parent 44447e9762
commit ac48ac348b

24
.github/workflows/opensuse.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: OpenSUSE
on: [push]
jobs:
tumbletweed:
name: gcc
runs-on: ubuntu-latest
container:
image: opensuse/tumbleweed
steps:
- name: Install prerequisites
run: |
zypper refresh
zypper --non-interactive install libopenssl-devel cmake gcc gcc-c++ tar gzip git ncurses-devel zlib-devel readline-devel
- uses: actions/checkout@master
with:
submodules: true
- name: Build
run: |
./configure
make -j $(nproc || sysctl -n hw.ncpu || echo 4) -C build
ldd build/vpnserver