We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a196d4 commit f1e1b6eCopy full SHA for f1e1b6e
1 file changed
Jenkinsfile
@@ -7,9 +7,9 @@ def runTests(String testPath, boolean jumbo = false) {
7
sh "cat make/local"
8
sh "make print-compiler-flags"
9
if (jumbo && !params.disableJumbo) {
10
- sh "python3 runTests.py -j${env.PARALLEL} ${testPath} --jumbo --debug"
+ sh "python3 runTests.py -j${PARALLEL} ${testPath} --jumbo --debug"
11
} else {
12
- sh "python3 runTests.py -j${env.PARALLEL} ${testPath}"
+ sh "python3 runTests.py -j${PARALLEL} ${testPath}"
13
}
14
15
finally { junit 'test/**/*.xml' }
@@ -61,7 +61,6 @@ pipeline {
61
OPENCL_PLATFORM_ID = 1
62
OPENCL_PLATFORM_ID_CPU = 0
63
OPENCL_PLATFORM_ID_GPU = 0
64
- PARALLEL = 4
65
GIT_AUTHOR_NAME = 'Stan Jenkins'
66
GIT_AUTHOR_EMAIL = 'mc.stanislaw@gmail.com'
67
GIT_COMMITTER_NAME = 'Stan Jenkins'
0 commit comments