1
0
mirror of https://github.com/lxsang/antd-tunnel-plugin synced 2024-06-14 23:00:14 +02:00
antd-tunnel-plugin/Jenkinsfile

106 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

2022-08-03 09:36:43 +02:00
def build_plugin()
{
sh '''
set -e
2024-03-13 23:42:08 +01:00
set -x
2022-08-03 09:36:43 +02:00
cd $WORKSPACE
2024-03-13 23:42:08 +01:00
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
2022-08-03 09:36:43 +02:00
libtoolize
aclocal
autoconf
automake --add-missing
2022-10-03 09:54:46 +02:00
search_path=$(realpath antd/build/$arch/usr)
2024-03-13 23:42:08 +01:00
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
2022-08-03 09:36:43 +02:00
'''
}
2022-08-02 08:54:49 +02:00
pipeline{
2024-03-13 23:42:08 +01:00
agent {
docker {
image 'xsangle/ci-tools:latest'
reuseNode true
}
}
2022-08-02 08:54:49 +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
2024-03-13 23:42:08 +01:00
timeout(time: 1, unit: 'HOURS')
2022-08-02 08:54:49 +02:00
// Use Jenkins ANSI Color Plugin for log console
ansiColor('xterm')
// Limit build concurrency to 1 per branch
disableConcurrentBuilds()
}
stages
{
2024-03-13 23:42:08 +01:00
stage('Prepare') {
2022-10-03 09:54:46 +02:00
steps {
2024-03-13 23:42:08 +01:00
copyArtifacts(projectName: 'gitea-sync/ant-http/master', target: 'antd');
sh'''
make clean || true
rm -rf build/* || true
mkdir build || true
'''
2022-10-03 09:54:46 +02:00
}
}
2022-08-03 09:36:43 +02:00
stage('Build AMD64') {
steps {
script{
env.arch = "amd64"
}
build_plugin()
}
}
stage('Build ARM64') {
steps {
script{
env.arch = "arm64"
}
build_plugin()
}
}
stage('Build ARM') {
steps {
script{
env.arch = "arm"
}
build_plugin()
}
}
2024-03-13 23:42:08 +01:00
stage("Archive") {
steps{
2022-08-02 08:54:49 +02:00
script {
2024-03-13 23:42:08 +01:00
archiveArtifacts artifacts: 'build/', fingerprint: true, onlyIfSuccessful: true
2022-08-02 08:54:49 +02:00
}
}
}
}
2024-03-13 23:42:08 +01:00
}