1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-23 01:49:53 +03:00
SoftEtherVPN/.github/workflows/musl.yml

30 lines
560 B
YAML
Raw Normal View History

2024-06-15 18:31:25 +03:00
name: Alpine/musl
2021-12-26 00:26:43 +03:00
on:
push:
pull_request:
2021-12-26 00:26:43 +03:00
jobs:
musl:
2024-06-15 18:31:25 +03:00
name: gcc
runs-on: ubuntu-latest
container:
image: alpine:latest
steps:
2021-12-26 00:26:43 +03:00
- name: Install dependencies
run: |
apk add binutils --no-cache build-base readline-dev openssl-dev ncurses-dev git cmake zlib-dev libsodium-dev gnu-libiconv
2024-06-15 18:31:25 +03:00
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
2021-12-26 00:26:43 +03:00
- name: Configure
run: |
./configure
2024-06-15 18:31:25 +03:00
2021-12-26 00:26:43 +03:00
- name: make
run: |
make -C build