@@ -3,6 +3,7 @@ name: Nightly
33
44# This job is run at 04:00 UTC every day or on demand.
55on :
6+ pull_request :
67 workflow_dispatch :
78 schedule :
89 - cron : ' 0 4 * * *'
1718
1819jobs :
1920 Fuzzing :
21+ # Temporarily disabled
22+ if : false
2023 strategy :
2124 fail-fast : false
2225 matrix :
7073 run : ctest -C ${{matrix.build_type}} --output-on-failure --verbose -L "fuzz-long"
7174
7275 Valgrind :
76+ # Temporarily disabled
77+ if : false
7378 strategy :
7479 fail-fast : false
7580 matrix :
@@ -109,6 +114,8 @@ jobs:
109114
110115 # Build and test UMF with different CMake generators on Windows
111116 Windows-generators :
117+ # Temporarily disabled
118+ if : false
112119 strategy :
113120 matrix :
114121 build_type : [Debug, Release]
@@ -203,6 +210,8 @@ jobs:
203210
204211 # Build and test UMF with Intel C++ Compiler (ICX) on Windows
205212 Windows-icx :
213+ # Temporarily disabled
214+ if : false
206215 env :
207216 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"
208217 strategy :
@@ -289,6 +298,8 @@ jobs:
289298 # Scenarios where UMF_LINK_HWLOC_STATICALLY is set to OFF and hwloc is not installed in the system
290299 # The hwloc library is fetched implicitly
291300 Hwloc-fallback :
301+ # Temporarily disabled
302+ if : false
292303 strategy :
293304 matrix :
294305 include :
@@ -334,6 +345,8 @@ jobs:
334345 run : ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
335346
336347 Windows-dynamic_mingw_hwloc :
348+ # Temporarily disabled
349+ if : false
337350 env :
338351 HWLOC_PACKAGE_NAME : hwloc-win64-build-2.10.0
339352 TBB_PACKAGE_NAME : oneapi-tbb-2021.12.0
@@ -384,24 +397,32 @@ jobs:
384397 run : ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
385398
386399 L0 :
400+ # Temporarily disabled
401+ if : false
387402 uses : ./.github/workflows/reusable_gpu.yml
388403 with :
389404 provider : " LEVEL_ZERO"
390405 runner : " L0"
391406 L0-BMG :
407+ # Temporarily disabled
408+ if : false
392409 uses : ./.github/workflows/reusable_gpu.yml
393410 with :
394411 provider : " LEVEL_ZERO"
395412 runner : " L0-BMG"
396413 os : " ['Ubuntu']"
397414 CUDA :
415+ # Temporarily disabled
416+ if : false
398417 uses : ./.github/workflows/reusable_gpu.yml
399418 with :
400419 provider : " CUDA"
401420 runner : " CUDA"
402421
403422 # Full execution of QEMU tests
404423 QEMU :
424+ # Temporarily disabled
425+ if : false
405426 uses : ./.github/workflows/reusable_qemu.yml
406427 with :
407428 short_run : false
@@ -423,6 +444,8 @@ jobs:
423444 # Run benchmarks with the latest SYCL (with the latest UMF copied into the SYCL)
424445 # to verify the compatibility.
425446 Benchmarks-sycl :
447+ # Temporarily disabled
448+ if : false
426449 uses : ./.github/workflows/reusable_benchmarks.yml
427450 permissions :
428451 contents : write
@@ -439,4 +462,6 @@ jobs:
439462 compatibility : ' 1'
440463
441464 SYCL :
465+ # Temporarily disabled
466+ if : false
442467 uses : ./.github/workflows/reusable_sycl.yml
0 commit comments