mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
56c146e6c0
Standardized writing style
30 lines
560 B
YAML
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 |