Skip to content

Commit 8543d61

Browse files
committed
[TEST CI]
1 parent c71ca06 commit 8543d61

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed

.github/workflows/benchmarks.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Compute Benchmarks
22

33
on:
4+
pull_request:
45
workflow_dispatch:
56
inputs:
67
pr_no:
@@ -39,7 +40,7 @@ jobs:
3940
name: Compute Benchmarks
4041
uses: ./.github/workflows/reusable_benchmarks.yml
4142
with:
42-
pr_no: ${{ inputs.pr_no }}
43-
bench_script_params: ${{ inputs.bench_script_params }} --filter umf-benchmark
44-
bench_script_compare: ${{ inputs.bench_script_compare }}
45-
runner: ${{ inputs.runner }}
43+
pr_no: ${{ github.event.pull_request.number || inputs.pr_no || '0' }}
44+
bench_script_params: ${{ inputs.bench_script_params || '' }}
45+
bench_script_compare: ${{ inputs.bench_script_compare || 'Baseline_PVC' }}
46+
runner: ${{ inputs.runner || 'L0_PERF_PVC' }}

.github/workflows/nightly.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Nightly
33

44
# This job is run at 04:00 UTC every day or on demand.
55
on:
6+
pull_request:
67
workflow_dispatch:
78
schedule:
89
- cron: '0 4 * * *'
@@ -17,6 +18,8 @@ env:
1718

1819
jobs:
1920
Fuzzing:
21+
# Temporarily disabled
22+
if: false
2023
strategy:
2124
fail-fast: false
2225
matrix:
@@ -70,6 +73,8 @@ jobs:
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

Comments
 (0)