File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
scripts/resources/windows Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -846,13 +846,15 @@ pipeline {
846846 node(' docker && linux' ){
847847 try {
848848 checkout scm
849- docker. image(' python' ). inside{
850- sh(script : ' python3 -m venv venv && venv/bin/pip install --disable-pip-version-check uv' )
851- envs = sh(
852- label : ' Get tox environments' ,
853- script : ' ./venv/bin/uv run --quiet --only-group tox --with tox-uv --isolated tox list -d --no-desc' ,
854- returnStdout : true ,
855- ). trim(). split(' \n ' )
849+ timeout(10 ){
850+ docker. image(' python' ). inside{
851+ sh(script : ' python3 -m venv venv && venv/bin/pip install --disable-pip-version-check uv' )
852+ envs = sh(
853+ label : ' Get tox environments' ,
854+ script : ' ./venv/bin/uv run --quiet --only-group tox --with tox-uv --isolated tox list -d --no-desc' ,
855+ returnStdout : true ,
856+ ). trim(). split(' \n ' )
857+ }
856858 }
857859 } finally {
858860 sh " ${ tool(name: 'Default', type: 'git')} clean -dfx"
Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ RUN Set-ExecutionPolicy Bypass -Scope Process -Force; `
6262RUN New-ItemProperty -Path "HKLM:\S YSTEM\C urrentControlSet\C ontrol\F ileSystem" `
6363 -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
6464
65- FROM chocolatey_base AS CONAN_BUILDER
6665FROM chocolatey_base AS conan_builder
6766ARG CONAN_HOME
6867
You can’t perform that action at this time.
0 commit comments