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 a
quick check since there are still many fixes required for sharness
tests in this environment.
  • Loading branch information
grondo committed Nov 17, 2023
1 parent 6bbcb81 commit 9fd647c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/test/generate-matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,20 @@ def __str__(self):
docker_tag=True,
)

matrix.add_build(
name="alpine - quick check",
image="alpine",
command_args="--quick-check",
args=(
"--prefix=/usr"
" --sysconfdir=/etc"
" --with-systemdsystemunitdir=/etc/systemd/system"
" --localstatedir=/var"
" --with-flux-security"
),
docker_tag=True
)

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

0 comments on commit 9fd647c

Please sign in to comment.