Skip to content

Commit

Permalink
Run Jenkins pipelines on generic x86_64 agents
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuttari committed Sep 20, 2024
1 parent a98b153 commit 4f81d64
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .jenkins/dev-debian-12.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ String checkName = "ci-" + configName
publishChecks(name: checkName, status: 'QUEUED', summary: 'Queued')

node {
agent 'x86_64-ubuntu-22.04'
agent {
label 'x86_64-linux'
}

String localWorkspace = "${WORKSPACE}/" + configName

Expand Down
4 changes: 3 additions & 1 deletion .jenkins/dev-fedora-40.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ String checkName = "ci-" + configName
publishChecks(name: checkName, status: 'QUEUED', summary: 'Queued')

node {
agent 'x86_64-ubuntu-22.04'
agent {
label 'x86_64-linux'
}

String localWorkspace = "${WORKSPACE}/" + configName

Expand Down
4 changes: 3 additions & 1 deletion .jenkins/dev-ubuntu-22.04.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ String checkName = "ci-" + configName
publishChecks(name: checkName, status: 'QUEUED', summary: 'Queued')

node {
agent 'x86_64-ubuntu-22.04'
agent {
label 'x86_64-linux'
}

String localWorkspace = "${WORKSPACE}/" + configName

Expand Down
4 changes: 3 additions & 1 deletion .jenkins/docker-dev-debian-12.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ String checkName = "docker-dev-image"
publishChecks(name: checkName, status: 'QUEUED', summary: 'Queued')

node {
agent 'x86_64-ubuntu-22.04'
agent {
label 'x86_64-linux'
}

String localWorkspace = "${WORKSPACE}/" + configName

Expand Down
4 changes: 3 additions & 1 deletion .jenkins/docker-prod-debian-12.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ String checkName = "docker-prod-image"
publishChecks(name: checkName, status: 'QUEUED', summary: 'Queued')

node {
agent 'x86_64-ubuntu-22.04'
agent {
label 'x86_64-linux'
}

String localWorkspace = "${WORKSPACE}/" + configName

Expand Down

0 comments on commit 4f81d64

Please sign in to comment.