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

29 lines
553 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
permissions:
contents: read
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
2024-06-15 18:31:25 +03:00
run: make -C build