fix $ARCH

This commit is contained in:
2025-09-04 17:55:24 -05:00
parent 0fe6f2423f
commit cc7e60ec37
3 changed files with 9 additions and 11 deletions

4
Jenkinsfile vendored
View File

@@ -42,7 +42,7 @@ pipeline {
stage('build on darwin ') {
agent { label "darwin" }
steps {
sh "STATIC=${STATIC} ${OPT_LTO} ./scripts/build.sh"
sh "${OPT_LTO} ./scripts/build.sh"
}
}
}
@@ -61,7 +61,7 @@ pipeline {
agent { label "linux && ${ARCH}" }
steps {
withDockerCreds {
sh "STATIC=${STATIC} ${OPT_LTO} ./scripts/docker_run_image.sh ${DISTRO}"
sh "${OPT_LTO} ./scripts/docker_run_image.sh ${DISTRO}"
}
}
}