Skip to content

Commit

Permalink
Add a workflow for the static build
Browse files Browse the repository at this point in the history
Signed-off-by: Cole Miller <cole.miller@canonical.com>
  • Loading branch information
cole-miller committed Aug 11, 2024
1 parent bd42ff7 commit b445c6d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/musl.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b445c6d

Please sign in to comment.