Skip to content

Commit

Permalink
fix(CI): use cross toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
lxsang committed Mar 13, 2024
1 parent dd1ceec commit e0d82e4
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 44 deletions.
87 changes: 43 additions & 44 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,47 @@ def build_plugin()
{
sh '''
set -e
set -x
cd $WORKSPACE
mkdir -p build/$arch/opt/www
[ -f Makefile ] && make clean || true
mkdir -p build/$arch/
[ -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
aclocal
autoconf
automake --add-missing
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" LDFLAGS="-L$search_path/lib" make
DESTDIR=$WORKSPACE/build/$arch make install
CFLAGS="-I$search_path/include" \
LDFLAGS="-L$search_path/lib" \
./configure $HOST --prefix=/usr
CFLAGS="-I$search_path/include" \
LDFLAGS="-L$search_path/lib" \
DESTDIR=$WORKSPACE/build/$arch \
make install
'''
}

pipeline{
agent { node{ label'master' }}
agent {
docker {
image 'xsangle/ci-tools:latest'
reuseNode true
}
}
options {
// Limit build history with buildDiscarder option:
// daysToKeepStr: history is only kept up to this many days.
Expand All @@ -28,31 +53,25 @@ pipeline{
// Enable timestamps in build log console
timestamps()
// 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
ansiColor('xterm')
// Limit build concurrency to 1 per branch
disableConcurrentBuilds()
}
stages
{
stage('Prepare dependencies')
{
stage('Prepare') {
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') {
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 {
script{
env.arch = "amd64"
Expand All @@ -61,16 +80,6 @@ pipeline{
}
}
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 {
script{
env.arch = "arm64"
Expand All @@ -79,29 +88,19 @@ pipeline{
}
}
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 {
script{
env.arch = "arm"
}
build_plugin()
}
}
stage('Archive') {
steps {
stage("Archive") {
steps{
script {
archiveArtifacts artifacts: 'build/', fingerprint: true
archiveArtifacts artifacts: 'build/', fingerprint: true, onlyIfSuccessful: true
}
}
}
}
}
}
Binary file removed broadcast/broadcast
Binary file not shown.

0 comments on commit e0d82e4

Please sign in to comment.