summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2021-07-10 22:58:33 +0200
committerAlexander Harkness <me@bearbin.net>2021-07-10 22:59:18 +0200
commit4bb359f06796cfd93374b2ed6d2c7d07ff86749c (patch)
tree9923ac2c4d4219563ad7e143542d670d82db1d09 /Jenkinsfile
parentChorus fruit teleport (#5259) (diff)
downloadcuberite-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 'Jenkinsfile')
-rw-r--r--Jenkinsfile14
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'
}
}
}