Skip to content

Commit

Permalink
Use ubuntu-latest instead of outdated centos-8
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi committed Nov 27, 2024
1 parent a6b8fe7 commit bd9bf84
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 @@ -18,7 +18,7 @@
def runOnNativeBuildAgent(String platform, Closure body) {
def final nativeBuildStageName = 'Build SWT-native binaries'
if (platform == 'gtk.linux.x86_64') {
podTemplate(inheritFrom: 'centos-latest' /* inhert general configuration */, containers: [
podTemplate(inheritFrom: 'ubuntu-latest' /* inhert general configuration */, containers: [
containerTemplate(name: 'swtbuild', image: 'eclipse/platformreleng-centos-swt-build:8',
resourceRequestCpu:'1000m', resourceRequestMemory:'512Mi',
resourceLimitCpu:'2000m', resourceLimitMemory:'4096Mi',
Expand Down Expand Up @@ -84,7 +84,7 @@ pipeline {
disableConcurrentBuilds(abortPrevious: true)
}
agent {
label 'centos-latest'
label 'ubuntu-latest'
}
tools {
jdk 'temurin-jdk17-latest'
Expand Down

0 comments on commit bd9bf84

Please sign in to comment.