Skip to content
Merged
Changes from 2 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
26 changes: 13 additions & 13 deletions build_tools/github_actions/fetch_test_configurations.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,17 +145,6 @@ def _get_script_path(script_name: str) -> str:
"windows": 2,
},
},
"rocprofiler_systems": {
"job_name": "rocprofiler_systems",
"fetch_artifact_args": "--rocprofiler-systems --rocprofiler-sdk --tests",
"timeout_minutes": 15,
"test_script": f"python {_get_script_path('test_rocprofiler_systems.py')}",
"platform": ["linux"],
"total_shards_dict": {
"linux": 1,
"windows": 1,
},
},
"hipcub": {
"job_name": "hipcub",
"fetch_artifact_args": "--prim --tests",
Expand Down Expand Up @@ -387,9 +376,9 @@ def _get_script_path(script_name: str) -> str:
"windows": 2,
},
},
# rocprofiler-compute tests
# profiler tests
"rocprofiler-compute": {
"job_name": "rocprofiler_compute",
"job_name": "rocprofiler-compute",
"fetch_artifact_args": "--rocprofiler-compute --rocprofiler-sdk --tests",
"timeout_minutes": 60,
"additional_requirements_files": [
Expand All @@ -400,6 +389,17 @@ def _get_script_path(script_name: str) -> str:
"platform": ["linux"],
"total_shards": 2,
Comment thread
jbonnell-amd marked this conversation as resolved.
Outdated
},
"rocprofiler-systems": {
"job_name": "rocprofiler-systems",
"fetch_artifact_args": "--rocprofiler-systems --rocprofiler-sdk --tests",
"timeout_minutes": 15,
"test_script": f"python {_get_script_path('test_rocprofiler_systems.py')}",
"platform": ["linux"],
"total_shards_dict": {
"linux": 1,
"windows": 1,
},
},
# libhipcxx hipcc tests
"libhipcxx_hipcc": {
"job_name": "libhipcxx_hipcc",
Expand Down
Loading