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

This commit is contained in:
DanyLE 2024-03-14 00:04:48 +01:00
parent 6380787d7e
commit 14e20cf41e

84
Jenkinsfile vendored
View File

@ -1,22 +1,41 @@
def build_plugin() def build_lib()
{ {
sh ''' sh '''
set -e set -e
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
./configure --prefix=/opt/www ./configure $HOST --prefix=/usr
make
DESTDIR=$WORKSPACE/build/$arch make install 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: // Limit build history with buildDiscarder option:
// daysToKeepStr: history is only kept up to this many days. // daysToKeepStr: history is only kept up to this many days.
@ -27,7 +46,7 @@ pipeline{
// 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
@ -35,70 +54,43 @@ pipeline{
} }
stages stages
{ {
stage('Prepare dependencies') stage('Prepare') {
{
steps { steps {
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'
// 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/'
}
}
steps { steps {
script{ script{
env.arch = "amd64" env.arch = "amd64"
} }
build_plugin() build_lib()
} }
} }
stage('Build ARM64') { stage('Build ARM64') {
agent {
docker {
image 'xsangle/ci-tools:bionic-arm64'
// 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/'
}
}
steps { steps {
script{ script{
env.arch = "arm64" env.arch = "arm64"
} }
build_plugin() build_lib()
} }
} }
stage('Build ARM') { stage('Build ARM') {
agent {
docker {
image 'xsangle/ci-tools:bionic-arm'
// 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/'
}
}
steps { steps {
script{ script{
env.arch = "arm" env.arch = "arm"
} }
build_plugin() build_lib()
} }
} }
stage('Archive') { stage("Archive") {
steps { steps{
script { script {
archiveArtifacts artifacts: 'build/', fingerprint: true archiveArtifacts artifacts: 'build/', fingerprint: true, onlyIfSuccessful: true
} }
} }
} }