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

This commit is contained in:
DanyLE 2024-03-13 23:44:27 +01:00
parent dd1ceec996
commit e0d82e47d0
2 changed files with 43 additions and 44 deletions

85
Jenkinsfile vendored
View File

@ -2,22 +2,47 @@ 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: // 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.
@ -28,7 +53,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
@ -36,23 +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'
// 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"
@ -61,16 +80,6 @@ pipeline{
} }
} }
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"
@ -79,16 +88,6 @@ pipeline{
} }
} }
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"
@ -96,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
} }
} }
} }

Binary file not shown.