Update Jenkinsfile

This commit is contained in:
Dany LE 2022-08-02 20:59:48 +02:00 committed by GitHub
parent e1872f8b6b
commit 8f982694c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View File

@ -42,7 +42,7 @@ pipeline{
stage('Build AMD64') { stage('Build AMD64') {
agent { agent {
docker { docker {
image ' xsangle/ci-tools:latest-amd64' image 'xsangle/ci-tools:latest-amd64'
// Run the container on the node specified at the // Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace, // top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely: // rather than on a new node entirely:
@ -60,7 +60,7 @@ pipeline{
stage('Build ARM64') { stage('Build ARM64') {
agent { agent {
docker { docker {
image ' xsangle/ci-tools:latest-arm64' image 'xsangle/ci-tools:latest-arm64'
// Run the container on the node specified at the // Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace, // top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely: // rather than on a new node entirely:
@ -78,7 +78,7 @@ pipeline{
stage('Build ARM') { stage('Build ARM') {
agent { agent {
docker { docker {
image ' xsangle/ci-tools:latest-arm' image 'xsangle/ci-tools:latest-arm'
// Run the container on the node specified at the // Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace, // top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely: // rather than on a new node entirely: