Update 'Jenkinsfile'
Some checks failed
gitea-sync/antos-deb/pipeline/head There was a failure building this commit
Some checks failed
gitea-sync/antos-deb/pipeline/head There was a failure building this commit
This commit is contained in:
parent
e8f7aef43d
commit
ee8ebccd46
77
Jenkinsfile
vendored
77
Jenkinsfile
vendored
@ -21,34 +21,61 @@ def ArrayList<String> getBranches(projectName){
|
||||
def generateStage(name) {
|
||||
return {
|
||||
stage("ANTOS ${name} AMD64") {
|
||||
//copyArtifacts(projectName: 'gitea-sync/antos/' + name, target: 'antos/frontend/' + name);
|
||||
env.tag = name;
|
||||
env.arch = "x86_64";
|
||||
sh'''
|
||||
echo "Deploy antos webapps for version $tag on architecture $arch"
|
||||
set -e
|
||||
set -x
|
||||
'''
|
||||
agent {
|
||||
docker {
|
||||
image 'xsangle/ci-tools:bionic-amd64'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
steps {
|
||||
script{
|
||||
env.tag = name;
|
||||
env.arch = "x86_64";
|
||||
}
|
||||
sh'''
|
||||
echo "Deploy antos webapps for version $tag on architecture $arch"
|
||||
set -e
|
||||
set -x
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage("ANTOS ${name} ARM64") {
|
||||
//copyArtifacts(projectName: 'gitea-sync/antos/' + name, target: 'antos/frontend/' + name);
|
||||
env.tag = name;
|
||||
env.arch = "aarch64";
|
||||
sh'''
|
||||
echo "Deploy antos webapps for version $tag on architecture $arch"
|
||||
set -e
|
||||
set -x
|
||||
'''
|
||||
agent {
|
||||
docker {
|
||||
image 'xsangle/ci-tools:bionic-arm64'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
steps {
|
||||
script{
|
||||
env.tag = name;
|
||||
env.arch = "aarch64";
|
||||
}
|
||||
sh'''
|
||||
echo "Deploy antos webapps for version $tag on architecture $arch"
|
||||
set -e
|
||||
set -x
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage("ANTOS ${name} ARM") {
|
||||
//copyArtifacts(projectName: 'gitea-sync/antos/' + name, target: 'antos/frontend/' + name);
|
||||
env.tag = name;
|
||||
env.arch = "armv7l";
|
||||
sh'''
|
||||
echo "Deploy antos webapps for version $tag on architecture $arch"
|
||||
set -e
|
||||
set -x
|
||||
'''
|
||||
stage("ANTOS ${name} ARM64") {
|
||||
agent {
|
||||
docker {
|
||||
image 'xsangle/ci-tools:bionic-arm'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
steps {
|
||||
script{
|
||||
env.tag = name;
|
||||
env.arch = "armv7l";
|
||||
}
|
||||
sh'''
|
||||
echo "Deploy antos webapps for version $tag on architecture $arch"
|
||||
set -e
|
||||
set -x
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user