Skip to content

Commit

Permalink
drop last remains of el8-special-cases in our pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Jul 19, 2024
1 parent 32eb252 commit de6fb70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions theforeman.org/pipelines/lib/foreman.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,7 @@ production:
}

def filter_package_json(ruby) {
if (env.NODE_LABELS.contains('el8')) {
python = 'python3.12'
} else {
python = 'python3'
}
python = 'python3'

sh "${python} script/filter-package-json.py"

Expand Down
6 changes: 1 addition & 5 deletions theforeman.org/pipelines/lib/obal.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ def obal(args) {
packages = packages.join(' ')
}

if (env.NODE_LABELS.contains('el8')) {
python = 'python3.12'
} else {
python = 'python3'
}
python = 'python3'

def cmd = "${python} -m obal ${args.action} ${packages}"

Expand Down

0 comments on commit de6fb70

Please sign in to comment.