Skip to content

Commit

Permalink
Add a musl build back into the circleci matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed Nov 10, 2023
1 parent c2db460 commit 470fbf8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,27 @@ jobs:
timeout --foreground -k 10s 4m make check
no_output_timeout: 30s

musl:
parameters:
scheduler:
type: string
topology:
type: string
docker:
- image: alpine:latest
steps:
- checkout
- run: |
apk add --no-cache --no-progress bash make musl-dev hwloc libtool autoconf automake gcc g++
- run: |
bash autogen.sh
bash configure --enable-picky --with-scheduler=<< parameters.scheduler >> -with-topology=<< parameters.topology >> || cat config.log
cat config.log
make -j2
- run:
command: timeout --foreground -k 10s 4m make check
no_output_timeout: 30s

workflows:
build_and_test:
jobs:
Expand All @@ -155,4 +176,9 @@ workflows:
parameters:
scheduler: [nemesis, sherwood, distrib]
topology: ['no', binders, hwloc]
- musl:
matrix:
parameters:
scheduler: [nemesis, sherwood, distrib]
topology: ['no', binders, hwloc]

0 comments on commit 470fbf8

Please sign in to comment.