From 3cdad95ee1795d22bdea0eaddb2e41ece6cb221f Mon Sep 17 00:00:00 2001 From: Johannes Weidacher Date: Sat, 25 Dec 2021 22:26:43 +0100 Subject: [PATCH] Add Musl build github workflow --- .github/workflows/musl.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/musl.yml diff --git a/.github/workflows/musl.yml b/.github/workflows/musl.yml new file mode 100644 index 00000000..91743eb8 --- /dev/null +++ b/.github/workflows/musl.yml @@ -0,0 +1,24 @@ +name: alpine/musl + +on: + push: + +permissions: + contents: read + +jobs: + musl: + name: gcc + runs-on: ubuntu-latest + container: + image: alpine:latest + steps: + - uses: actions/checkout@v1 + with: + submodules: true + - 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: Configure + run: ./configure + - name: make + run: make -C build \ No newline at end of file