Skip to content

Commit

Permalink
Jenkins: Update containers to Debian 12 (bookworm)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiX committed Jul 8, 2023
1 parent 52d9f38 commit a7aba6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
def pys = [
[name: 'Python 3.11', docker: '3.11-bullseye', tox:'py311,flake8', main: true],
[name: 'Python 3.10', docker: '3.10-bullseye', tox:'py310', main: false],
[name: 'Python 3.9', docker: '3.9-bullseye', tox:'py39', main: false],
[name: 'Python 3.8', docker: '3.8-bullseye', tox:'py38', main: false],
[name: 'Python 3.7', docker: '3.7-bullseye', tox:'py37', main: false],
[name: 'Python 3.11', docker: '3.11-slim-bookworm', tox:'py311,flake8', main: true],
[name: 'Python 3.10', docker: '3.10-slim-bookworm', tox:'py310', main: false],
[name: 'Python 3.9', docker: '3.9-slim-bookworm', tox:'py39', main: false],
[name: 'Python 3.8', docker: '3.8-slim-bookworm', tox:'py38', main: false],
[name: 'Python 3.7', docker: '3.7-slim-bookworm', tox:'py37', main: false],
]

properties([
Expand Down
2 changes: 1 addition & 1 deletion tests/modules/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ node {
stage ('Run tests') {
timeout(time: 12, unit: 'HOURS') {
withCredentials([string(credentialsId: 'proxymap', variable: 'PROXYMAP')]) {
sh 'podman run --rm -v $PWD:/work --userns=keep-id docker.io/python:3.10-bullseye /work/tests/modules/testall.sh'
sh 'podman run --rm -v $PWD:/work --userns=keep-id docker.io/python:3.11-bookworm /work/tests/modules/testall.sh'
}
}
}
Expand Down

0 comments on commit a7aba6e

Please sign in to comment.