diff options
author | Alexander Harkness <me@bearbin.net> | 2021-07-10 22:58:33 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2021-07-10 22:59:18 +0200 |
commit | 4bb359f06796cfd93374b2ed6d2c7d07ff86749c (patch) | |
tree | 9923ac2c4d4219563ad7e143542d670d82db1d09 /Jenkinsfile | |
parent | Chorus fruit teleport (#5259) (diff) | |
download | cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.gz cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.bz2 cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.lz cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.xz cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.zst cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.zip |
Diffstat (limited to '')
-rw-r--r-- | Jenkinsfile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 5e3097833..2d43215fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,7 +21,7 @@ pipeline { } stage("clang-tidy") { steps { - sh './clang-tidy.sh -j 3' + sh './clang-tidy.sh -j 4' } } } @@ -30,24 +30,24 @@ pipeline { parallel { stage("gcc") { environment { - TRAVIS_CUBERITE_BUILD_TYPE = 'Release' - TRAVIS_JOB_NUMBER = "{$env.BUILD_ID}" + CI_CUBERITE_BUILD_TYPE = 'Release' + CI_JOB_NUMBER = "{$env.BUILD_ID}" CC = "gcc" CXX = "g++" } steps { - sh 'bash ./travisbuild.sh' + sh 'bash ./cibuild.sh' } } stage("clang") { environment { - TRAVIS_CUBERITE_BUILD_TYPE = 'Debug' - TRAVIS_JOB_NUMBER = "{$env.BUILD_ID}" + CI_CUBERITE_BUILD_TYPE = 'Debug' + CI_JOB_NUMBER = "{$env.BUILD_ID}" CC = "clang" CXX = "clang++" } steps { - sh 'bash ./travisbuild.sh' + sh 'bash ./cibuild.sh' } } } |