mirror of
https://github.com/lxsang/luafcgi.git
synced 2024-12-26 13:18:22 +01:00
cleanup jenkinsfile
All checks were successful
gitea-sync/luafcgi/pipeline/head This commit looks good
All checks were successful
gitea-sync/luafcgi/pipeline/head This commit looks good
This commit is contained in:
parent
1b6411bf01
commit
e6e8ee5a0d
60
Jenkinsfile
vendored
60
Jenkinsfile
vendored
@ -49,42 +49,36 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stages
|
stages
|
||||||
{
|
{
|
||||||
stage('Prepare dependencies')
|
stage('Build AMD64') {
|
||||||
{
|
steps {
|
||||||
steps {
|
script {
|
||||||
copyArtifacts(projectName: 'gitea-sync/ant-http/master', target: 'antd')
|
env.arch = 'amd64'
|
||||||
}
|
}
|
||||||
|
build_luad()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage('Build AMD64') {
|
stage('Build ARM64') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
env.arch = 'amd64'
|
env.arch = 'arm64'
|
||||||
}
|
}
|
||||||
build_luad()
|
build_luad()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build ARM64') {
|
stage('Build ARM') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
env.arch = 'arm64'
|
env.arch = 'arm'
|
||||||
}
|
}
|
||||||
build_luad()
|
build_luad()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build ARM') {
|
stage('Archive') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
env.arch = 'arm'
|
archiveArtifacts artifacts: 'build/', fingerprint: true
|
||||||
}
|
|
||||||
build_luad()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Archive') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
archiveArtifacts artifacts: 'build/', fingerprint: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user