From 4bb359f06796cfd93374b2ed6d2c7d07ff86749c Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sat, 10 Jul 2021 21:58:33 +0100 Subject: Update build script names to be more intuitive. See: https://github.com/cuberite/cuberite/commit/e77a4ab46deb63655037132ee4af7b9612890ee0 --- Jenkinsfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Jenkinsfile') 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' } } } -- cgit v1.2.3