Skip to content

Commit

Permalink
Merge pull request #483 from thaJeztah/use_ubuntu_2004
Browse files Browse the repository at this point in the history
[master] Jenkinsfile: use Ubuntu 20.04 nodes for building
  • Loading branch information
thaJeztah committed May 21, 2021
2 parents a786f93 + dfd1313 commit f00ec07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def branch = env.CHANGE_TARGET ?: env.BRANCH_NAME
test_steps = [
'deb': { ->
stage('Ubuntu Xenial and Focal Package') {
wrappedNode(label: 'ubuntu && x86_64', cleanWorkspace: true) {
wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) {
try {
checkout scm
sh "make REF=$branch checkout"
Expand All @@ -31,7 +31,7 @@ test_steps = [
},
'rpm': { ->
stage('Centos 7 and 8 RPM Packages') {
wrappedNode(label: 'ubuntu && x86_64', cleanWorkspace: true) {
wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) {
try {
checkout scm
sh "make REF=$branch checkout"
Expand All @@ -44,7 +44,7 @@ test_steps = [
},
'static-cross': { ->
stage('Static Linux Binaries') {
wrappedNode(label: 'ubuntu && x86_64', cleanWorkspace: true) {
wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) {
try {
checkout scm
sh "make REF=$branch checkout"
Expand Down

0 comments on commit f00ec07

Please sign in to comment.