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
+5-3Lines changed: 5 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,8 @@ 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
+
run: for i in {1..100}; do echo ">>> ITERATION no. ${i}" ; UMF_LOG="level:debug;flush:debug;output:stderr;pid:yes" ctest -V -R provider_level_zero || exit 1; date; done
133
134
134
135
- name: Run examples (Debug)
135
136
working-directory: ${{env.BUILD_DEBUG_DIR}}
@@ -163,7 +164,8 @@ jobs:
163
164
164
165
- name: Run tests (Release)
165
166
working-directory: ${{env.BUILD_RELEASE_DIR}}
166
-
run: ctest -C Release --output-on-failure --test-dir test
167
+
# 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
168
+
run: for i in {1..100}; do echo ">>> ITERATION no. ${i}" ; UMF_LOG="level:debug;flush:debug;output:stderr;pid:yes" ctest -V -R provider_level_zero || exit 1; date; done
0 commit comments