4bb359f067
See: e77a4ab46d
62 lines
1.7 KiB
Groovy
62 lines
1.7 KiB
Groovy
pipeline {
|
|
agent {
|
|
docker 'cuberite/docker-ci/minimal:latest'
|
|
}
|
|
stages {
|
|
stage("Prepare") {
|
|
steps {
|
|
sh 'git submodule update --init'
|
|
}
|
|
}
|
|
stage("Check") {
|
|
parallel {
|
|
stage("CheckBasicStyle") {
|
|
steps {
|
|
dir("src") {
|
|
sh 'find . -name \\*.cpp -or -name \\*.h > AllFiles.lst'
|
|
sh 'lua CheckBasicStyle.lua'
|
|
sh 'cd Bindings && lua CheckBindingsDependencies.lua'
|
|
}
|
|
}
|
|
}
|
|
stage("clang-tidy") {
|
|
steps {
|
|
sh './clang-tidy.sh -j 4'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage("Build") {
|
|
parallel {
|
|
stage("gcc") {
|
|
environment {
|
|
CI_CUBERITE_BUILD_TYPE = 'Release'
|
|
CI_JOB_NUMBER = "{$env.BUILD_ID}"
|
|
CC = "gcc"
|
|
CXX = "g++"
|
|
}
|
|
steps {
|
|
sh 'bash ./cibuild.sh'
|
|
}
|
|
}
|
|
stage("clang") {
|
|
environment {
|
|
CI_CUBERITE_BUILD_TYPE = 'Debug'
|
|
CI_JOB_NUMBER = "{$env.BUILD_ID}"
|
|
CC = "clang"
|
|
CXX = "clang++"
|
|
}
|
|
steps {
|
|
sh 'bash ./cibuild.sh'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
cleanWs()
|
|
}
|
|
}
|
|
}
|