From 78dddc5723f3337d09756c26d79c215726d644c1 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 | 22 ++++++++++++++++++++++ 1 file changed, 22 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..7b95c5c4e --- /dev/null +++ b/.github/workflows/musl.yaml @@ -0,0 +1,22 @@ +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 \ + gettext autopoint tclsh tcl + + - name: Static build + run: | + mkdir static-prefix + PREFIX="$(pwd)/static-prefix" contrib/build-static.sh build