Skip to content

Commit

Permalink
Merge pull request #187 from thaJeztah/use_ubuntu_2004
Browse files Browse the repository at this point in the history
Jenkinsfile: use Ubuntu 20.04 nodes for building
  • Loading branch information
thaJeztah authored Feb 12, 2022
2 parents 9238148 + c868515 commit 123b569
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 123b569

Please sign in to comment.