File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -150,9 +150,17 @@ jobs:
150150 run : |
151151 # Don't exit on first error: print relevant error message
152152 set +e
153+ # A virtual env is mandatory under Debian 13
154+ if [[ "${{ matrix.container }}" == "debian13" ]]; then
155+ python -m venv khiops-debian-venv
156+ source khiops-debian-venv/bin/activate
157+ fi
153158 # Convert pre-release version specification in the Git tag to the Pip
154159 # format and check that it matches the Pip package version
155160 PACKAGE_VERSION=$(pip show khiops | awk 'BEGIN {FS = ": "} $1 ~ /^Version$/ {print $2}')
161+ if [[ "${{ matrix.container }}" == "debian13" ]]; then
162+ deactivate
163+ fi
156164 echo ${{ github.ref_name }} | tr -d '-' | rev | sed 's/\.//' | rev | \
157165 grep -wq $PACKAGE_VERSION
158166 if [[ $? -ne 0 ]]
You can’t perform that action at this time.
0 commit comments