@@ -510,7 +510,7 @@ def call(){
510
510
script{
511
511
def envs = []
512
512
node(' docker && windows' ){
513
- docker. image(' python' ). inside(" --mount type=volume,source=uv_python_install_dir,target=${ env.UV_PYTHON_INSTALL_DIR} " ){
513
+ docker. image(env . DEFAULT_PYTHON_DOCKER_IMAGE ? env . DEFAULT_PYTHON_DOCKER_IMAGE : ' python' ). inside(" --mount type=volume,source=uv_python_install_dir,target=${ env.UV_PYTHON_INSTALL_DIR} " ){
514
514
try {
515
515
checkout scm
516
516
bat(script : ' python -m venv venv && venv\\ Scripts\\ pip install --disable-pip-version-check uv' )
@@ -537,7 +537,7 @@ def call(){
537
537
" Tox Environment: ${ toxEnv} " ,
538
538
{
539
539
node(' docker && windows' ){
540
- docker. image(' python' ). inside(" --mount type=volume,source=uv_python_install_dir,target=${ env.UV_PYTHON_INSTALL_DIR} " ){
540
+ docker. image(env . DEFAULT_PYTHON_DOCKER_IMAGE ? env . DEFAULT_PYTHON_DOCKER_IMAGE : ' python' ). inside(" --mount type=volume,source=uv_python_install_dir,target=${ env.UV_PYTHON_INSTALL_DIR} " ){
541
541
checkout scm
542
542
try {
543
543
retry(3 ){
@@ -680,7 +680,7 @@ def call(){
680
680
checkout scm
681
681
unstash ' PYTHON_PACKAGES'
682
682
if ([' linux' , ' windows' ]. contains(entry. OS ) && params. containsKey(" INCLUDE_${ entry.OS} -${ entry.ARCHITECTURE} " . toUpperCase()) && params[" INCLUDE_${ entry.OS} -${ entry.ARCHITECTURE} " . toUpperCase()]){
683
- docker. image(' python' ). inside(isUnix() ? ' ' : " --mount type=volume,source=uv_python_install_dir,target=C:\\ Users\\ ContainerUser\\ Documents\\ uvpython" ){
683
+ docker. image(env . DEFAULT_PYTHON_DOCKER_IMAGE ? env . DEFAULT_PYTHON_DOCKER_IMAGE : ' python' ). inside(isUnix() ? ' ' : " --mount type=volume,source=uv_python_install_dir,target=C:\\ Users\\ ContainerUser\\ Documents\\ uvpython" ){
684
684
if (isUnix()){
685
685
withEnv([
686
686
' PIP_CACHE_DIR=/tmp/pipcache' ,
0 commit comments