Skip to content

Commit a5b9f79

Browse files
committed
[DEBUG] Test nightly benchmark workflow
1 parent bd242cd commit a5b9f79

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/nightly.yml

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
workflow_dispatch:
77
schedule:
88
- cron: '0 4 * * *'
9+
push:
10+
pull_request:
911

1012
permissions:
1113
contents: read
@@ -15,6 +17,7 @@ env:
1517

1618
jobs:
1719
fuzz-test:
20+
if: false
1821
name: Fuzz test
1922
strategy:
2023
fail-fast: false
@@ -54,6 +57,7 @@ jobs:
5457
run: ctest -C ${{matrix.build_type}} --output-on-failure --verbose -L "fuzz-long"
5558

5659
valgrind:
60+
if: false
5761
name: Valgrind
5862
strategy:
5963
fail-fast: false
@@ -92,6 +96,7 @@ jobs:
9296
run: ${{github.workspace}}/test/test_valgrind.sh ${{github.workspace}} ${{github.workspace}}/build ${{matrix.tool}}
9397

9498
Windows-generators:
99+
if: false
95100
name: Windows ${{matrix.generator}} generator
96101
strategy:
97102
matrix:
@@ -164,6 +169,7 @@ jobs:
164169
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
165170

166171
icx:
172+
if: false
167173
name: ICX
168174
env:
169175
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"
@@ -251,6 +257,7 @@ jobs:
251257
# Scenarios where UMF_LINK_HWLOC_STATICALLY is set to OFF and hwloc is not installed in the system
252258
# The hwloc library is fetched implicitly
253259
hwloc-fallback:
260+
if: false
254261
name: "Fallback to static hwloc build"
255262
strategy:
256263
matrix:
@@ -297,24 +304,28 @@ jobs:
297304
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
298305

299306
L0:
307+
if: false
300308
uses: ./.github/workflows/reusable_gpu.yml
301309
with:
302310
provider: "LEVEL_ZERO"
303311
runner: "L0"
304312
L0-BMG:
313+
if: false
305314
uses: ./.github/workflows/reusable_gpu.yml
306315
with:
307316
provider: "LEVEL_ZERO"
308317
runner: "L0-BMG"
309318
os: "['Ubuntu']"
310319
CUDA:
320+
if: false
311321
uses: ./.github/workflows/reusable_gpu.yml
312322
with:
313323
provider: "CUDA"
314324
runner: "CUDA"
315325

316326
# Full execution of QEMU tests
317327
QEMU:
328+
if: false
318329
uses: ./.github/workflows/reusable_qemu.yml
319330
with:
320331
short_run: false
@@ -333,4 +344,5 @@ jobs:
333344
run_sycl: true
334345

335346
SYCL:
347+
if: false
336348
uses: ./.github/workflows/reusable_sycl.yml

.github/workflows/pr_push.yml

+2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ permissions:
1717

1818
jobs:
1919
CodeChecks:
20+
if: false
2021
uses: ./.github/workflows/reusable_checks.yml
2122
DocsBuild:
23+
if: false
2224
uses: ./.github/workflows/reusable_docs_build.yml
2325
FastBuild:
2426
name: Fast builds

0 commit comments

Comments
 (0)