Add the musl builds to the CI loop

Signed-off-by: Derek Straka <derek@asterius.io>
This commit is contained in:
Derek Straka
2018-07-12 11:30:11 -04:00
parent badf251873
commit 0c02af0d86

7
Jenkinsfile vendored
View File

@@ -17,8 +17,11 @@ for (int i = 0; i < targets.size(); i++) {
stage("fetch $machine") {
sh "GIT_LOCAL_REF_DIR=/srv/git-cache/ ./scripts/fetch.sh master"
}
stage("build $machine") {
sh "MACHINE=${machine} ./scripts/build.sh"
stage("build glibc $machine") {
sh "MACHINE=${machine} TCLIBC=glibc ./scripts/build.sh"
}
stage("build musl $machine") {
sh "MACHINE=${machine} TCLIBC=musl ./scripts/build.sh"
}
} catch (e) {
echo "Caught: ${e}"