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 da3f93e commit 1604f01
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,30 @@ jobs:
timeout --foreground -k 10s 4m make check
no_output_timeout: 30s

musl:
parameters:
worker_type:
type: string
scheduler:
type: string
topology:
type: string
docker:
- image: alpine:latest
resource_class: << parameters.worker_type >>
steps:
- checkout
- run: |
apk add --no-cache --no-progress bash make musl-dev hwloc-dev 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: make check
no_output_timeout: 30s

workflows:
build_and_test:
jobs:
Expand All @@ -155,4 +179,10 @@ workflows:
parameters:
scheduler: [nemesis, sherwood, distrib]
topology: ['no', binders, hwloc]
- musl:
matrix:
parameters:
worker_type: [medium, arm.medium]
scheduler: [nemesis, sherwood, distrib]
topology: ['no', binders, hwloc]

0 comments on commit 1604f01

Please sign in to comment.