From b445c6d54fdcdacb0d5ab2657fddcd7cfa013f0c Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Sun, 11 Aug 2024 16:25:27 -0400 Subject: [PATCH] Add a workflow for the static build Signed-off-by: Cole Miller --- .github/workflows/musl.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/musl.yaml diff --git a/.github/workflows/musl.yaml b/.github/workflows/musl.yaml new file mode 100644 index 000000000..d155ac023 --- /dev/null +++ b/.github/workflows/musl.yaml @@ -0,0 +1,21 @@ +name: CI Tests (musl) + +on: + - push + - pull_request + +jobs: + build: + runs-on: ubuntu-24.04 + + steps: + - uses: actions/checkout@v4 + + - name: Install dependencies + run: | + sudo apt install -y musl-tools autoconf automake libtool make + + - name: Static build + run: | + mkdir static-prefix + PREFIX="$(pwd)/static-prefix" contrib/build-static.sh build