2024-06-15 18:31:25 +03:00
|
|
|
name: Alpine/musl
|
2021-12-26 00:26:43 +03:00
|
|
|
|
2024-08-31 08:58:49 +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
|
2024-08-31 08:58:49 +03:00
|
|
|
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
|
2024-08-31 08:58:49 +03:00
|
|
|
run: |
|
|
|
|
./configure
|
2024-06-15 18:31:25 +03:00
|
|
|
|
2021-12-26 00:26:43 +03:00
|
|
|
- name: make
|
2024-08-31 08:58:49 +03:00
|
|
|
run: |
|
|
|
|
make -C build
|