1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
antd-web-apps/Jenkinsfile

40 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-08-01 18:34:27 +02:00
pipeline{
2022-09-29 19:05:05 +02:00
agent { node{ label'workstation' }}
2022-08-01 18:34:27 +02:00
options {
// Limit build history with buildDiscarder option:
// daysToKeepStr: history is only kept up to this many days.
// numToKeepStr: only this many build logs are kept.
// artifactDaysToKeepStr: artifacts are only kept up to this many days.
// artifactNumToKeepStr: only this many builds have their artifacts kept.
buildDiscarder(logRotator(numToKeepStr: "1"))
// Enable timestamps in build log console
timestamps()
// Maximum time to run the whole pipeline before canceling it
timeout(time: 1, unit: 'HOURS')
// Use Jenkins ANSI Color Plugin for log console
ansiColor('xterm')
// Limit build concurrency to 1 per branch
disableConcurrentBuilds()
}
stages
{
stage('Build') {
steps {
2022-09-26 09:36:08 +02:00
sh'''
cd $WORKSPACE
[ -d build ] && rm -rf build
mkdir -p build/opt/www/htdocs
export BUILDDIR="$WORKSPACE/build/opt/www/htdocs"
2022-09-29 19:07:51 +02:00
make
2022-09-26 09:36:08 +02:00
'''
2022-08-01 18:34:27 +02:00
script {
// only useful for any master branch
//if (env.BRANCH_NAME =~ /^master/) {
2022-08-02 12:04:31 +02:00
archiveArtifacts artifacts: 'build/', fingerprint: true
2022-08-01 18:34:27 +02:00
//}
}
}
}
}
}