mirror of
https://github.com/cuberite/cuberite.git
synced 2025-01-08 11:57:39 +08:00
70 lines
1.9 KiB
Groovy
70 lines
1.9 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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage("Artifacts") {
|
|
when {
|
|
branch 'master'
|
|
}
|
|
steps {
|
|
archiveArtifacts artifacts: 'gcc_Release/Server/.luacheckrc'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
cleanWs()
|
|
}
|
|
}
|
|
}
|