1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39:53 +03:00
SoftEtherVPN/.github/workflows/musl.yml
Syuugo 56c146e6c0
Striving for consistency
Standardized writing style
2024-08-31 14:58:49 +09:00

30 lines
560 B
YAML

name: Alpine/musl
on:
push:
pull_request:
jobs:
musl:
name: gcc
runs-on: ubuntu-latest
container:
image: alpine:latest
steps:
- 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
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Configure
run: |
./configure
- name: make
run: |
make -C build