Skip to content

Commit

Permalink
ci: add alpine build to github ci
Browse files Browse the repository at this point in the history
Problem: There is no automated build of flux-core on a musl
libc system, so PRs are not checked for portability to non-glibc
environments.

Add a ci build on alpine to the github workflow matrix. Only run
`make check-prep` since there are still many fixes required for
sharness tests in this environment.
  • Loading branch information
grondo committed Nov 17, 2023
1 parent c4a7980 commit bdae81a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/generate-matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,12 @@ def __str__(self):
docker_tag=True,
)

matrix.add_build(
name="alpine - unit tests only",
image="alpine",
command_args="--check-prep",
)

# inception
matrix.add_build(
name="inception",
Expand Down

0 comments on commit bdae81a

Please sign in to comment.