mirror of
https://github.com/lxsang/ant-http
synced 2024-11-18 01:08:21 +01:00
Update Jenkinsfile
This commit is contained in:
parent
100f9d74b6
commit
a6bb0b16db
35
Jenkinsfile
vendored
35
Jenkinsfile
vendored
@ -1,23 +1,12 @@
|
|||||||
def build_antd()
|
def build_antd()
|
||||||
{
|
{
|
||||||
|
docker.image("xsangle/ci-tools:latest-" + env.arch).inside {
|
||||||
sh '''
|
sh '''
|
||||||
set -e
|
printenv
|
||||||
export WORKSPACE=$(realpath "./jenkins/workspace/ant-http")
|
uname -a
|
||||||
cd $WORKSPACE
|
|
||||||
[ -d build ] && rm -rf build
|
|
||||||
mkdir -p build/$arch/etc/systemd/system/
|
|
||||||
mkdir -p build/$arch/opt/www
|
|
||||||
[ -f Makefile ] && make clean
|
|
||||||
libtoolize
|
|
||||||
aclocal
|
|
||||||
autoconf
|
|
||||||
automake --add-missing
|
|
||||||
./configure --prefix=/usr
|
|
||||||
make
|
|
||||||
DESTDIR=$WORKSPACE/build/$arch make install
|
|
||||||
cp $WORKSPACE/build/usr/etc/antd-config.ini build/$arch/opt/www/config.ini.example
|
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pipeline{
|
pipeline{
|
||||||
agent { node{ label'master' }}
|
agent { node{ label'master' }}
|
||||||
@ -40,21 +29,11 @@ pipeline{
|
|||||||
stages
|
stages
|
||||||
{
|
{
|
||||||
stage('Build AMD64') {
|
stage('Build AMD64') {
|
||||||
agent {
|
|
||||||
docker {
|
|
||||||
image ' xsangle/ci-tools:latest-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
|
|
||||||
}
|
|
||||||
alwaysPull false
|
|
||||||
}
|
|
||||||
steps {
|
steps {
|
||||||
script{
|
script{
|
||||||
env.arch = "amd64"
|
env.arch = "amd64"
|
||||||
}
|
}
|
||||||
// call
|
build_antd()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build ARM64') {
|
stage('Build ARM64') {
|
||||||
@ -71,7 +50,7 @@ pipeline{
|
|||||||
script{
|
script{
|
||||||
env.arch = "arm64"
|
env.arch = "arm64"
|
||||||
}
|
}
|
||||||
// call
|
build_antd()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build ARM') {
|
stage('Build ARM') {
|
||||||
@ -88,7 +67,7 @@ pipeline{
|
|||||||
script{
|
script{
|
||||||
env.arch = "arm"
|
env.arch = "arm"
|
||||||
}
|
}
|
||||||
// call
|
build_antd()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Archive") {
|
stage("Archive") {
|
||||||
|
Loading…
Reference in New Issue
Block a user