Skip to content

Commit

Permalink
don't cache windows uv
Browse files Browse the repository at this point in the history
  • Loading branch information
henryborchers committed Aug 12, 2024
1 parent 64967da commit 54912af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ def getToxStages(){
},
'Windows':{
timeout(240){
// Don't cache uv path here on windows because it keeps running into Access is denied errors on
// windows
windowsJobs = getToxTestsParallel(
envNamePrefix: 'Tox Windows',
label: 'windows && docker && x86',
dockerfile: 'ci/docker/windows/tox/Dockerfile',
dockerArgs: '--build-arg PIP_EXTRA_INDEX_URL --build-arg PIP_INDEX_URL --build-arg CHOCOLATEY_SOURCE --build-arg chocolateyVersion --build-arg PIP_DOWNLOAD_CACHE=c:/users/containeradministrator/appdata/local/pip --build-arg UV_CACHE_DIR=c:/users/ContainerUser/appdata/local/uv',
dockerRunArgs: '-v pipcache_tesseractglue:c:/users/containeradministrator/appdata/local/pip -v uvcache_tesseractglue:c:/users/containeradministrator/appdata/local/uv',
dockerRunArgs: '-v pipcache_tesseractglue:c:/users/containeradministrator/appdata/local/pip',
retry: 2
)
}
Expand Down

0 comments on commit 54912af

Please sign in to comment.