Skip to content

Commit

Permalink
ci: simplify jenkins Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
henryborchers committed Oct 23, 2024
1 parent a3b23fc commit e4f2498
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -586,11 +586,11 @@ pipeline {
retry(conditions: [agent()], count: 2)
}
environment{
PIP_CACHE_DIR='/tmp/pipcache'
UV_INDEX_STRATEGY='unsafe-best-match'
UV_TOOL_DIR='/tmp/uvtools'
UV_PYTHON_INSTALL_DIR='/tmp/uvpython'
UV_CACHE_DIR='/tmp/uvcache'
PIP_CACHE_DIR = '/tmp/pipcache'
UV_INDEX_STRATEGY = 'unsafe-best-match'
UV_TOOL_DIR = '/tmp/uvtools'
UV_PYTHON_INSTALL_DIR = '/tmp/uvpython'
UV_CACHE_DIR = '/tmp/uvcache'
UV_PYTHON = '3.11'
}
steps {
Expand Down Expand Up @@ -932,9 +932,6 @@ pipeline {
}
}
}
// steps {
// runTox()
// }
}
}
}
Expand Down

0 comments on commit e4f2498

Please sign in to comment.