ant-http/Jenkinsfile

99 lines
2.0 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
2024-03-13 23:04:56 +01:00
mkdir -p build/$arch/
2022-08-02 20:58:57 +02:00
[ -f Makefile ] && make clean
2024-03-13 23:04:56 +01:00
case $arch in
amd64|x86_64)
HOST=
;;
aarch64|arm64)
HOST=--host=aarch64-linux-gnu
;;
armv7l|arm)
HOST=--host=arm-linux-gnueabihf
;;
*)
echo "Unkown architecture"
exit 1
;;
esac
2022-08-02 20:58:57 +02:00
libtoolize
aclocal
autoconf
automake --add-missing
2024-03-13 23:04:56 +01:00
./configure $HOST --prefix=/usr
2022-08-02 20:58:57 +02:00
DESTDIR=$WORKSPACE/build/$arch make install
'''
2022-08-02 16:39:40 +02:00
}
2022-08-01 12:01:13 +02:00
pipeline{
2024-03-13 23:04:56 +01:00
agent {
docker {
image 'xsangle/ci-tools:latest'
reuseNode true
}
}
2022-08-01 12:01:13 +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
{
2024-03-13 23:04:56 +01:00
stage('Prepare') {
steps {
sh'''
make clean || true
rm -rf build/* || true
mkdir build || true
'''
2022-08-02 20:58:57 +02:00
}
2024-03-13 23:04:56 +01:00
}
stage('Build AMD64') {
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-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') {
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
}
}
}
}