@@ -3,6 +3,7 @@ name: Nightly
3
3
4
4
# This job is run at 04:00 UTC every day or on demand.
5
5
on :
6
+ pull_request :
6
7
workflow_dispatch :
7
8
schedule :
8
9
- cron : ' 0 4 * * *'
17
18
18
19
jobs :
19
20
Fuzzing :
21
+ # Temporarily disabled
22
+ if : false
20
23
strategy :
21
24
fail-fast : false
22
25
matrix :
70
73
run : ctest -C ${{matrix.build_type}} --output-on-failure --verbose -L "fuzz-long"
71
74
72
75
Valgrind :
76
+ # Temporarily disabled
77
+ if : false
73
78
strategy :
74
79
fail-fast : false
75
80
matrix :
@@ -109,6 +114,8 @@ jobs:
109
114
110
115
# Build and test UMF with different CMake generators on Windows
111
116
Windows-generators :
117
+ # Temporarily disabled
118
+ if : false
112
119
strategy :
113
120
matrix :
114
121
build_type : [Debug, Release]
@@ -203,6 +210,8 @@ jobs:
203
210
204
211
# Build and test UMF with Intel C++ Compiler (ICX) on Windows
205
212
Windows-icx :
213
+ # Temporarily disabled
214
+ if : false
206
215
env :
207
216
VCPKG_PATH : " ${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows"
208
217
strategy :
@@ -289,6 +298,8 @@ jobs:
289
298
# Scenarios where UMF_LINK_HWLOC_STATICALLY is set to OFF and hwloc is not installed in the system
290
299
# The hwloc library is fetched implicitly
291
300
Hwloc-fallback :
301
+ # Temporarily disabled
302
+ if : false
292
303
strategy :
293
304
matrix :
294
305
include :
@@ -334,6 +345,8 @@ jobs:
334
345
run : ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
335
346
336
347
Windows-dynamic_mingw_hwloc :
348
+ # Temporarily disabled
349
+ if : false
337
350
env :
338
351
HWLOC_PACKAGE_NAME : hwloc-win64-build-2.10.0
339
352
TBB_PACKAGE_NAME : oneapi-tbb-2021.12.0
@@ -384,24 +397,32 @@ jobs:
384
397
run : ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
385
398
386
399
L0 :
400
+ # Temporarily disabled
401
+ if : false
387
402
uses : ./.github/workflows/reusable_gpu.yml
388
403
with :
389
404
provider : " LEVEL_ZERO"
390
405
runner : " L0"
391
406
L0-BMG :
407
+ # Temporarily disabled
408
+ if : false
392
409
uses : ./.github/workflows/reusable_gpu.yml
393
410
with :
394
411
provider : " LEVEL_ZERO"
395
412
runner : " L0-BMG"
396
413
os : " ['Ubuntu']"
397
414
CUDA :
415
+ # Temporarily disabled
416
+ if : false
398
417
uses : ./.github/workflows/reusable_gpu.yml
399
418
with :
400
419
provider : " CUDA"
401
420
runner : " CUDA"
402
421
403
422
# Full execution of QEMU tests
404
423
QEMU :
424
+ # Temporarily disabled
425
+ if : false
405
426
uses : ./.github/workflows/reusable_qemu.yml
406
427
with :
407
428
short_run : false
@@ -423,6 +444,8 @@ jobs:
423
444
# Run benchmarks with the latest SYCL (with the latest UMF copied into the SYCL)
424
445
# to verify the compatibility.
425
446
Benchmarks-sycl :
447
+ # Temporarily disabled
448
+ if : false
426
449
uses : ./.github/workflows/reusable_benchmarks.yml
427
450
permissions :
428
451
contents : write
@@ -439,4 +462,6 @@ jobs:
439
462
compatibility : ' 1'
440
463
441
464
SYCL :
465
+ # Temporarily disabled
466
+ if : false
442
467
uses : ./.github/workflows/reusable_sycl.yml
0 commit comments