Skip to content

Commit a3ebe67

Browse files
committed
CI: build on Alpine Linux
Add a CI step to build on Alpine Linux, to avoid future breakage on systems running musl libc. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
1 parent 8aa7a68 commit a3ebe67

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: ci
33
on: [pull_request]
44

55
jobs:
6-
build:
7-
name: build
6+
build_ubuntu:
7+
name: build on Ubuntu
88
runs-on: ubuntu-22.04
99
steps:
1010
- name: checking out
@@ -15,3 +15,13 @@ jobs:
1515
working-directory: tgt
1616
run: |
1717
make
18+
build_alpine:
19+
name: build on Alpine Linux
20+
runs-on: ubuntu-22.04
21+
steps:
22+
- name: Setup Alpine Linux
23+
uses: jirutka/setup-alpine@v1
24+
25+
- name: build
26+
run: |
27+
make

0 commit comments

Comments
 (0)