We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dc2722 commit 502aa7fCopy full SHA for 502aa7f
1 file changed
.github/workflows/all_tests_metax.yml
@@ -18,9 +18,17 @@ jobs:
18
platform: metax
19
# Metax Environment Setup
20
setup_commands: |
21
- source /opt/miniconda3/etc/profile.d/conda.sh
22
- conda activate flagscale-train
23
- export LD_LIBRARY_PATH=/usr/local/maca/lib:$LD_LIBRARY_PATH
+
+ if [ -f "/opt/conda/etc/profile.d/conda.sh" ]; then
+ source /opt/conda/etc/profile.d/conda.sh
24
25
+ conda activate flagscale-train || echo "Using default conda environment"
26
+ fi
27
28
+ export LD_LIBRARY_PATH=/usr/local/maca/lib:/opt/maca/lib:$LD_LIBRARY_PATH
29
30
+ python3 --version
31
+ which python3
32
33
all_tests:
34
needs: run_tests
0 commit comments