Skip to content

Commit c84c10f

Browse files
try fix #206
[ci skip]
1 parent 0b6957a commit c84c10f

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/benchmark.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,6 @@ jobs:
131131
with:
132132
name: config-artifacts
133133
path: ./tmp/
134-
- name: Debug python
135-
run: |
136-
ls /cvmfs/sling.si/modules/el7/software/Python/3.10.8-GCCcore-12.2.0/lib/libpython3.10.so.1.0
137-
ldd /cvmfs/sling.si/modules/el7/software/Python/3.10.8-GCCcore-12.2.0/bin/python3.10
138134
- name: Setup machine and env
139135
run: ${{matrix.submit_command}}
140136
- name: Execute benchmarks
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/bin/bash -l
22

3-
# module load Python/3.10.8-GCCcore-12.2.0
4-
/cvmfs/sling.si/modules/el7/software/Python/3.10.8-GCCcore-12.2.0/bin/python3.10 -m venv .venv
3+
module load Python/3.10.8-GCCcore-12.2.0
4+
export LD_LIBRARY_PATH=/cvmfs/sling.si/modules/el7/software/Python/3.10.8-GCCcore-12.2.0/lib:$LD_LIBRARY_PATH
5+
python3.10 -m venv .venv
6+
echo 'export LD_LIBRARY_PATH=/cvmfs/sling.si/modules/el7/software/Python/3.10.8-GCCcore-12.2.0/lib:$LD_LIBRARY_PATH' >> .venv/bin/activate
57
source .venv/bin/activate
68
.venv/bin/python3.10 -m pip install --upgrade pip
79
.venv/bin/python3.10 -m pip install -r requirements.txt

0 commit comments

Comments
 (0)