Skip to content

Commit f00ec07

Browse files
authored
Merge pull request #483 from thaJeztah/use_ubuntu_2004
[master] Jenkinsfile: use Ubuntu 20.04 nodes for building
2 parents a786f93 + dfd1313 commit f00ec07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def branch = env.CHANGE_TARGET ?: env.BRANCH_NAME
55
test_steps = [
66
'deb': { ->
77
stage('Ubuntu Xenial and Focal Package') {
8-
wrappedNode(label: 'ubuntu && x86_64', cleanWorkspace: true) {
8+
wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) {
99
try {
1010
checkout scm
1111
sh "make REF=$branch checkout"
@@ -31,7 +31,7 @@ test_steps = [
3131
},
3232
'rpm': { ->
3333
stage('Centos 7 and 8 RPM Packages') {
34-
wrappedNode(label: 'ubuntu && x86_64', cleanWorkspace: true) {
34+
wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) {
3535
try {
3636
checkout scm
3737
sh "make REF=$branch checkout"
@@ -44,7 +44,7 @@ test_steps = [
4444
},
4545
'static-cross': { ->
4646
stage('Static Linux Binaries') {
47-
wrappedNode(label: 'ubuntu && x86_64', cleanWorkspace: true) {
47+
wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) {
4848
try {
4949
checkout scm
5050
sh "make REF=$branch checkout"

0 commit comments

Comments
 (0)