We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 965d757 commit abfad9bCopy full SHA for abfad9b
1 file changed
.github/workflows/root-ci.yml
@@ -466,14 +466,15 @@ jobs:
466
BUILD_DIR: /github/home/ROOT-CI/build
467
INSTALL_DIR: /github/home/ROOT-CI/install
468
POST_INSTALL_DIR: /github/home/ROOT-CI/PostInstall
469
+ PYTHON_VENV: ${{ matrix.python_venv || '/py-venv/ROOT-CI' }}
470
471
steps:
472
- name: Set up environment
473
run: |
474
ccache -o max_size=${{ matrix.is_special && '5G' || '1.5G' }}
475
ccache -s || true
- if [ -d /py-venv/ROOT-CI/bin/ ]; then
476
- . /py-venv/ROOT-CI/bin/activate && echo PATH=$PATH >> $GITHUB_ENV;
+ if [ -d "$PYTHON_VENV/bin/" ]; then
477
+ . "$PYTHON_VENV/bin/activate" && echo PATH=$PATH >> $GITHUB_ENV;
478
fi
479
if ${{ contains(matrix.property, 'auto-registration off') }}; then
480
echo "Disabling ROOT's object auto registration for this job"
0 commit comments