Skip to content

[Test] Add possibility to run StarCCM+ and OpenFOAM performance test on specific OSes. #6473

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: release-3.11
Choose a base branch
from
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