Skip to content

Commit

Permalink
ci/musl: add alpine/musl build (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers authored Aug 28, 2022
1 parent a18dd92 commit 2e96f6e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/musl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Alpine (musl)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
container: alpine

steps:
- uses: actions/checkout@v2
- name: install devel tools
run: |
apk add musl-dev git cmake gcc make binutils openssl-dev linux-headers zlib-dev
- name: make
run: |
cmake -B build -DCMAKE_C_FLAGS="-Werror"
cmake --build build -j

0 comments on commit 2e96f6e

Please sign in to comment.