fix(CI): use cross toolchain
All checks were successful
gitea-sync/antd-wvnc-plugin/pipeline/head This commit looks good

This commit is contained in:
DanyLE 2024-03-13 23:43:25 +01:00
parent d08ae89c82
commit 4c5e54d1e2

76
Jenkinsfile vendored
View File

@ -2,28 +2,58 @@ def build_plugin()
{ {
sh ''' sh '''
set -e set -e
set -x
cd $WORKSPACE cd $WORKSPACE
mkdir -p build/$arch/opt/www mkdir -p build/$arch/
[ -f Makefile ] && (make clean || true) [ -f Makefile ] && make clean
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
libtoolize libtoolize
aclocal aclocal
autoconf autoconf
automake --add-missing automake --add-missing
search_path=$(realpath antd/build/$arch/usr) search_path=$(realpath antd/build/$arch/usr)
CFLAGS="-I$search_path/include" LDFLAGS="-L$search_path/lib" ./configure --prefix=/opt/www CFLAGS="-I$search_path/include" \
CFLAGS="-I$search_path/include" LDFLAGS="-L$search_path/lib" make LDFLAGS="-L$search_path/lib" \
DESTDIR=$WORKSPACE/build/$arch make install ./configure $HOST --prefix=/usr
CFLAGS="-I$search_path/include" \
LDFLAGS="-L$search_path/lib" \
DESTDIR=$WORKSPACE/build/$arch \
make install
''' '''
} }
pipeline{ pipeline{
agent { node{ label'master' }} agent {
docker {
image 'xsangle/ci-tools:latest'
reuseNode true
}
}
options { 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")) buildDiscarder(logRotator(numToKeepStr: "1"))
// Enable timestamps in build log console // Enable timestamps in build log console
timestamps() timestamps()
// Maximum time to run the whole pipeline before canceling it // Maximum time to run the whole pipeline before canceling it
timeout(time: 3, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// Use Jenkins ANSI Color Plugin for log console // Use Jenkins ANSI Color Plugin for log console
ansiColor('xterm') ansiColor('xterm')
// Limit build concurrency to 1 per branch // Limit build concurrency to 1 per branch
@ -31,19 +61,17 @@ pipeline{
} }
stages stages
{ {
stage('Prepare dependencies') stage('Prepare') {
{
steps { steps {
copyArtifacts(projectName: 'gitea-sync/ant-http/master', target: 'antd'); copyArtifacts(projectName: 'gitea-sync/ant-http/master', target: 'antd');
sh'''
make clean || true
rm -rf build/* || true
mkdir build || true
'''
} }
} }
stage('Build AMD64') { stage('Build AMD64') {
agent {
docker {
image 'xsangle/ci-tools:bionic-amd64'
reuseNode true
}
}
steps { steps {
script{ script{
env.arch = "amd64" env.arch = "amd64"
@ -52,12 +80,6 @@ pipeline{
} }
} }
stage('Build ARM64') { stage('Build ARM64') {
agent {
docker {
image 'xsangle/ci-tools:bionic-arm64'
reuseNode true
}
}
steps { steps {
script{ script{
env.arch = "arm64" env.arch = "arm64"
@ -66,12 +88,6 @@ pipeline{
} }
} }
stage('Build ARM') { stage('Build ARM') {
agent {
docker {
image 'xsangle/ci-tools:bionic-arm'
reuseNode true
}
}
steps { steps {
script{ script{
env.arch = "arm" env.arch = "arm"
@ -79,10 +95,10 @@ pipeline{
build_plugin() build_plugin()
} }
} }
stage('Archive') { stage("Archive") {
steps { steps{
script { script {
archiveArtifacts artifacts: 'build/', fingerprint: true archiveArtifacts artifacts: 'build/', fingerprint: true, onlyIfSuccessful: true
} }
} }
} }