Skip to content

Commit

Permalink
Jenkinsfile: use Ubuntu 20.04 nodes for building
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Feb 9, 2022
1 parent 9238148 commit c868515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def images = [

def generatePackageStep(opts, arch) {
return {
wrappedNode(label: "linux&&${arch}") {
wrappedNode(label: "ubuntu-2004 && ${arch}") {
stage("${opts.image}-${arch}") {
try {
sh 'docker version'
Expand Down Expand Up @@ -74,7 +74,7 @@ pipeline {
agent none
stages {
stage('Check file headers') {
agent { label 'linux&&amd64' }
agent { label 'ubuntu-2004 && amd64' }
steps{
script{
checkout scm
Expand Down

0 comments on commit c868515

Please sign in to comment.