Browse code

Add CI job to build under Alpine Linux (#122)

This way we are testing against musl

John Hawthorn authored on 18/08/2019 05:16:27 • GitHub committed on 18/08/2019 05:16:27
Showing 1 changed files

... ...
@@ -22,6 +22,15 @@ jobs:
22 22
       run: make && make test
23 23
       env:
24 24
         CC: ${{ matrix.compiler }}
25
+  test_alpine:
26
+    name: Test on Alpine Linux
27
+    runs-on: ubuntu-latest
28
+    steps:
29
+    - uses: actions/checkout@v1
30
+    - name: Compile and run tests
31
+      uses: docker://alpine
32
+      with:
33
+        args: sh -c "apk add build-base && make && make test"
25 34
   acceptance_test:
26 35
     name: Acceptance Tests
27 36
     runs-on: ubuntu-latest