Fixing tests

This commit is contained in:
retropikzel 2025-09-13 20:15:45 +03:00
parent e5ec7df983
commit 48a31e5c88
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -27,7 +27,7 @@ pipeline {
DOCKERIMG="chicken:5"
}
sh "docker build --build-arg IMAGE=${DOCKERIMG} --build-arg SCHEME=${implementation} --tag=foreign-c-test-${implementation} -f Dockerfile.test ."
sh "docker run -v ${WORKSPACE}:/workdir -w /workdir -t foreign-c-test-${implementation} sh -c \"timeout 120 make SCHEME=${implementation} TEST=${test} clean install test\""
sh "docker run -v ${WORKSPACE}:/workdir -w /workdir -t foreign-c-test-${implementation} sh -c \"make SCHEME=${implementation} TEST=${test} SNOW_CHIBI_ARGS=--always-yes clean install test\""
}
}
}