Updating tests

This commit is contained in:
retropikzel 2025-10-01 23:37:32 +03:00
parent 4db414f120
commit de9f7a5275
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -18,6 +18,9 @@ pipeline {
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
def DOCKERIMG="${SCHEME}:head"
if("${SCHEME}" == "chicken") {
DOCKERIMG="chicken:5"
}
sh "docker build --build-arg IMAGE=${DOCKERIMG} --build-arg SCHEME=${SCHEME} --tag=foreign-c-test-${SCHEME} -f Dockerfile.test ."
sh "docker run -v ${WORKSPACE}:/workdir -w /workdir -t foreign-c-test-${SCHEME} sh -c \"make SCHEME=${SCHEME} SNOW_CHIBI_ARGS=--always-yes install test\""
archiveArtifacts artifacts: '.tmp/test/*.log', allowEmptyArchive: true, fingerprint: true, onlyIfSuccessful: true