Skip to content

Commit

Permalink
ci: removed unneeded specialized dockerfiles used in jenkins ci
Browse files Browse the repository at this point in the history
(cherry picked from commit 66941b3)
  • Loading branch information
henryborchers committed Nov 22, 2024
1 parent f321799 commit d5014b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 150 deletions.
14 changes: 7 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -355,11 +355,11 @@ pipeline {
equals expected: true, actual: params.RUN_CHECKS
beforeAgent true
}
agent {
dockerfile {
filename 'ci/docker/python/linux/jenkins/Dockerfile'
label 'linux && docker && x86'
args '--mount source=python-tmp-speedwagon,target=/tmp'
agent{
docker {
image 'python'
label 'linux && docker && x86_64'
args '--mount source=python-tmp-speedwagon,target=/tmp'
}
}
environment{
Expand Down Expand Up @@ -671,7 +671,7 @@ pipeline {
cleanWs(
patterns: [
[pattern: 'venv/', type: 'INCLUDE'],
[pattern: '.tox', type: 'INCLUDE'],
[pattern: '.tox/', type: 'INCLUDE'],
[pattern: '**/__pycache__/', type: 'INCLUDE'],
]
)
Expand Down Expand Up @@ -717,7 +717,7 @@ pipeline {
cleanWs(
patterns: [
[pattern: 'venv/', type: 'INCLUDE'],
[pattern: '.tox', type: 'INCLUDE'],
[pattern: '.tox/', type: 'INCLUDE'],
[pattern: '**/__pycache__/', type: 'INCLUDE'],
]
)
Expand Down
11 changes: 0 additions & 11 deletions ci/docker/python/linux/jenkins/Dockerfile

This file was deleted.

39 changes: 0 additions & 39 deletions ci/docker/python/windows/jenkins/Dockerfile

This file was deleted.

93 changes: 0 additions & 93 deletions ci/docker/python/windows/tox/Dockerfile

This file was deleted.

0 comments on commit d5014b6

Please sign in to comment.