Skip to content

Commit 8ca0550

Browse files
committed
trying to modify the workflow file
1 parent 6ec6093 commit 8ca0550

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/run-benchmark-docker.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
python -c \"import KratosMultiphysics; print('Kratos imported OK')\"
5555
5656
echo '>>> Building FEniCS environment'
57+
conda deactivate
5758
mamba env create -n fenics-sim -f /NFDI_Benchmark/benchmarks/linear-elastic-plate-with-hole/fenics/environment_simulation.yml
5859
conda activate fenics-sim
5960
export OMP_NUM_THREADS=1
@@ -67,7 +68,14 @@ jobs:
6768
echo '>>> Building Postprocessing environment'
6869
mamba env create -n postprocessing -f /NFDI_Benchmark/benchmarks/linear-elastic-plate-with-hole/environment_postprocessing.yml
6970
70-
echo '>>> Running Snakemake simulation'
71+
echo '>>> Running simulation'
72+
73+
# Check which conda environment is active
74+
echo '>>> Current Conda environments:'
75+
conda info --envs
76+
echo '>>> Active Conda environment:'
77+
echo $CONDA_DEFAULT_ENV
78+
7179
cd /NFDI_Benchmark/benchmarks/linear-elastic-plate-with-hole
7280
snakemake --use-conda --force --cores all
7381

0 commit comments

Comments
 (0)