Skip to content

Commit

Permalink
switch EL8 packaging jobs to Python 3.12
Browse files Browse the repository at this point in the history
Ansible got updated to a version that needs that now.
  • Loading branch information
evgeni authored and ekohl committed Jun 3, 2024
1 parent 557f2ff commit ce8d2b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions theforeman.org/pipelines/lib/foreman.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ production:

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

sh "${python} script/filter-package-json.py"
Expand Down
4 changes: 2 additions & 2 deletions theforeman.org/pipelines/lib/obal.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ def obal(args) {
}

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

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

0 comments on commit ce8d2b5

Please sign in to comment.