Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tests/integration-tests/configs/openfoam.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{% if OSS %}
{%- set OSS = [ OSS ] -%}
{% else %}
{%- set OSS = ["alinux2", "ubuntu2004"] -%}
{% endif %}
test-suites:
performance_tests:
test_openfoam.py::test_openfoam:
dimensions:
- regions: ["euw1-az1"] # do not move, unless capacity reservation is moved as well
instances: ["c5n.18xlarge"]
oss: ["alinux2", "ubuntu2004"] # Ubuntu22.04, RHEL8 and Rocky8 are not supported
oss: {{ OSS }} # Ubuntu22.04, RHEL8 and Rocky8 are not supported
schedulers: ["slurm"]
7 changes: 6 additions & 1 deletion tests/integration-tests/configs/starccm.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{% if OSS %}
{%- set OSS = [ OSS ] -%}
{% else %}
{%- set OSS = ["alinux2", "alinux2023", "ubuntu2204", "ubuntu2004", "rhel8", "rocky8"] -%}
{% endif %}
test-suites:
performance_tests:
test_starccm.py::test_starccm:
dimensions:
- regions: ["euw1-az1"] # do not move, unless capacity reservation is moved as well
instances: ["c5n.18xlarge"]
oss: ["alinux2", "alinux2023", "ubuntu2204", "ubuntu2004", "rhel8", "rocky8"]
oss: {{ OSS }}
schedulers: ["slurm"]
Loading