ant-http/Jenkinsfile

103 lines
2.8 KiB
Plaintext
Raw Normal View History

2022-08-02 16:39:40 +02:00
def build_antd()
{
2022-08-02 20:58:57 +02:00
sh '''
set -e
cd $WORKSPACE
mkdir -p build/$arch/etc/systemd/system/
mkdir -p build/$arch/opt/www
[ -f Makefile ] && make clean
libtoolize
aclocal
autoconf
automake --add-missing
./configure --prefix=/usr
make
DESTDIR=$WORKSPACE/build/$arch make install
2022-08-02 21:14:51 +02:00
cp build/$arch/usr/etc/antd-config.ini build/$arch/opt/www/config.ini.example
2022-08-02 20:58:57 +02:00
'''
2022-08-02 16:39:40 +02:00
}
2022-08-01 12:01:13 +02:00
pipeline{
agent { node{ label'master' }}
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
{
2022-08-02 16:39:40 +02:00
stage('Build AMD64') {
2022-08-02 20:58:57 +02:00
agent {
docker {
2022-08-02 20:59:48 +02:00
image 'xsangle/ci-tools:latest-amd64'
2022-08-02 20:58:57 +02:00
// Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely:
reuseNode true
registryUrl 'http://workstation:5000/'
}
}
2022-08-02 16:39:40 +02:00
steps {
script{
2022-08-02 20:58:57 +02:00
env.arch = "amd64"
2022-08-02 16:39:40 +02:00
}
2022-08-02 17:08:01 +02:00
build_antd()
2022-08-02 16:39:40 +02:00
}
}
stage('Build ARM64') {
2022-08-02 20:58:57 +02:00
agent {
docker {
2022-08-02 20:59:48 +02:00
image 'xsangle/ci-tools:latest-arm64'
2022-08-02 20:58:57 +02:00
// Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely:
reuseNode true
registryUrl 'http://workstation:5000/'
}
}
2022-08-01 12:01:13 +02:00
steps {
2022-08-02 16:39:40 +02:00
script{
env.arch = "arm64"
}
2022-08-02 17:08:01 +02:00
build_antd()
2022-08-02 16:39:40 +02:00
}
}
stage('Build ARM') {
2022-08-02 20:58:57 +02:00
agent {
docker {
2022-08-02 20:59:48 +02:00
image 'xsangle/ci-tools:latest-arm'
2022-08-02 20:58:57 +02:00
// Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely:
reuseNode true
registryUrl 'http://workstation:5000/'
}
}
2022-08-02 16:39:40 +02:00
steps {
script{
env.arch = "arm"
}
2022-08-02 17:08:01 +02:00
build_antd()
2022-08-02 16:39:40 +02:00
}
}
stage("Archive") {
steps{
2022-08-01 12:10:24 +02:00
script {
2022-08-02 09:22:51 +02:00
archiveArtifacts artifacts: 'build/', fingerprint: true, onlyIfSuccessful: true
2022-08-01 12:10:24 +02:00
}
2022-08-01 12:01:13 +02:00
}
}
}
}