Skip to content

Commit

Permalink
CI: build on Alpine Linux
Browse files Browse the repository at this point in the history
Add a CI step to build on Alpine Linux, to avoid future breakage on
systems running musl libc.

Signed-off-by: Stijn Tintel <[email protected]>
  • Loading branch information
stintel committed Mar 30, 2024
1 parent 277320f commit 636028d
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: ci
on: [pull_request]

jobs:
build:
name: build
build_ubuntu:
name: build on Ubuntu
runs-on: ubuntu-22.04
steps:
- name: checking out
Expand All @@ -15,3 +15,18 @@ jobs:
working-directory: tgt
run: |
make
build_alpine:
name: build on Alpine Linux
runs-on: ubuntu-22.04
steps:
- name: checking out
uses: actions/checkout@v3
with:
path: tgt
- name: Setup Alpine Linux
uses: jirutka/setup-alpine@v1

- name: build
working-directory: tgt
run: |
make

0 comments on commit 636028d

Please sign in to comment.