Skip to content

Commit 3e7c1ec

Browse files
committed
test skipp pygemc in codeql and sanitize ci
1 parent 5dfdc95 commit 3e7c1ec

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ jobs:
9595
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
9696
- if: matrix.build-mode == 'manual'
9797
shell: bash
98+
env:
99+
GEMC_SKIP_PYTHON_ENV_INSTALL: "1"
98100
run: |
99101
echo "Starting manual build for CodeQL..."
100102

ci/install_python_env.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,4 @@
3131
venv_python = str(venv_dir / 'bin' / 'python3')
3232
subprocess.run([venv_python, '-m', 'pip', 'install', '--no-cache-dir', '--upgrade',
3333
'pip', 'setuptools', 'wheel'], check=True)
34-
# --no-build-isolation avoids pip spawning an extra ephemeral build env, reducing memory use.
35-
subprocess.run([venv_python, '-m', 'pip', 'install', '--no-cache-dir', '--no-build-isolation',
36-
pygemc_src], check=True)
34+
subprocess.run([venv_python, '-m', 'pip', 'install', '--no-cache-dir', pygemc_src], check=True)

0 commit comments

Comments
 (0)