Skip to content

Commit 8c088a0

Browse files
committed
Exclude conda
1 parent 411442f commit 8c088a0

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Archive all outputs (including .snakemake)
5454
run: |
5555
cd benchmarks/rotating-cylinders/dumux
56-
tar -czf dumux-run-artifacts.tar.gz .
56+
tar --exclude='.snakemake/conda' -czf dumux-run-artifacts.tar.gz .
5757
5858
- name: Upload full run artifacts
5959
uses: actions/upload-artifact@v4

benchmarks/rotating-cylinders/openfoam/run_benchmark.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,20 @@
6868
], check=True, cwd=output_dir)
6969

7070
# Run the Snakemake reporter for the configuration
71-
subprocess.run([
72-
"snakemake",
73-
"-s", str(snakefile_path),
74-
"--use-singularity",
75-
"--cores", "all",
76-
"--resources", "serial_run=1",
77-
"--force",
78-
"--reporter", "metadata4ing",
79-
"--report-metadata4ing-filename", f"openfoam_rocrate_{config_name}.zip",
80-
"--report-metadata4ing-name", "NFDI4Ing Provenance", \
81-
"--report-metadata4ing-description", "Benchmark for rotating cylinders", \
82-
"--report-metadata4ing-license", "https://opensource.org/licenses/MIT", \
83-
"--report-metadata4ing-profile", "provenance-run-crate-0.5", \
84-
], check=True, cwd=output_dir)
71+
# subprocess.run([
72+
# "snakemake",
73+
# "-s", str(snakefile_path),
74+
# "--use-singularity",
75+
# "--cores", "all",
76+
# "--resources", "serial_run=1",
77+
# "--force",
78+
# "--reporter", "metadata4ing",
79+
# "--report-metadata4ing-filename", f"openfoam_rocrate_{config_name}.zip",
80+
# "--report-metadata4ing-name", "NFDI4Ing Provenance", \
81+
# "--report-metadata4ing-description", "Benchmark for rotating cylinders", \
82+
# "--report-metadata4ing-license", "https://opensource.org/licenses/MIT", \
83+
# "--report-metadata4ing-profile", "provenance-run-crate-0.5", \
84+
# ], check=True, cwd=output_dir)
8585

8686
print(f"Workflow executed successfully for {config_name}.")
8787

0 commit comments

Comments
 (0)