You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/reusable_gpu.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ on:
16
16
os:
17
17
description: A list of OSes
18
18
type: string
19
-
default: "['Ubuntu', 'Windows']"
19
+
default: "['Ubuntu']"
20
20
shared_lib:
21
21
description: A list of options for building shared library
22
22
type: string
@@ -129,7 +129,7 @@ jobs:
129
129
130
130
- name: Run tests (Debug)
131
131
working-directory: ${{env.BUILD_DEBUG_DIR}}
132
-
run: ctest -C Debug --output-on-failure --test-dir test
132
+
run: for i in {1..100}; do echo ">>> ITERATION no. ${i}" ; UMF_LOG="level:debug;flush:debug;output:stderr;pid:yes" ./test/test_provider_level_zero_dlopen_global || exit 1; date; done
133
133
134
134
- name: Run examples (Debug)
135
135
working-directory: ${{env.BUILD_DEBUG_DIR}}
@@ -163,7 +163,7 @@ jobs:
163
163
164
164
- name: Run tests (Release)
165
165
working-directory: ${{env.BUILD_RELEASE_DIR}}
166
-
run: ctest -C Release --output-on-failure --test-dir test
166
+
run: for i in {1..1000}; do echo ">>> ITERATION no. ${i}" ; UMF_LOG="level:debug;flush:debug;output:stderr;pid:yes" ./test/test_provider_level_zero_dlopen_global || exit 1; date; done
0 commit comments