Skip to content

Commit e546d33

Browse files
committed
[TEST] Test benchmarks
1 parent 5a65f10 commit e546d33

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
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: '0'
44+
bench_script_params: --save PR_1472 --filter umf-benchmark
45+
bench_script_compare: Baseline_PVC
46+
runner: L0_PERF_PVC

.github/workflows/nightly.yml

Lines changed: 13 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,7 @@ env:
1718

1819
jobs:
1920
Fuzzing:
21+
if: false
2022
strategy:
2123
fail-fast: false
2224
matrix:
@@ -70,6 +72,7 @@ jobs:
7072
run: ctest -C ${{matrix.build_type}} --output-on-failure --verbose -L "fuzz-long"
7173

7274
Valgrind:
75+
if: false
7376
strategy:
7477
fail-fast: false
7578
matrix:
@@ -109,6 +112,7 @@ jobs:
109112

110113
# Build and test UMF with different CMake generators on Windows
111114
Windows-generators:
115+
if: false
112116
env:
113117
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"
114118
VCPKG_PATH_NO_HWLOC: "${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows"
@@ -250,6 +254,7 @@ jobs:
250254

251255
# Build and test UMF with Intel C++ Compiler (ICX) on Windows
252256
Windows-icx:
257+
if: false
253258
env:
254259
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"
255260
strategy:
@@ -362,6 +367,7 @@ jobs:
362367
# Scenarios where UMF_LINK_HWLOC_STATICALLY is set to OFF and hwloc is not installed in the system
363368
# The hwloc library is fetched implicitly
364369
Hwloc-fallback:
370+
if: false
365371
strategy:
366372
matrix:
367373
include:
@@ -407,6 +413,7 @@ jobs:
407413
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
408414

409415
Windows-dynamic_mingw_hwloc:
416+
if: false
410417
env:
411418
HWLOC_PACKAGE_NAME: hwloc-win64-build-2.10.0
412419
TBB_PACKAGE_NAME: oneapi-tbb-2021.12.0
@@ -457,24 +464,28 @@ jobs:
457464
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
458465

459466
L0:
467+
if: false
460468
uses: ./.github/workflows/reusable_gpu.yml
461469
with:
462470
provider: "LEVEL_ZERO"
463471
runner: "L0"
464472
L0-BMG:
473+
if: false
465474
uses: ./.github/workflows/reusable_gpu.yml
466475
with:
467476
provider: "LEVEL_ZERO"
468477
runner: "L0-BMG"
469478
os: "['Ubuntu']"
470479
CUDA:
480+
if: false
471481
uses: ./.github/workflows/reusable_gpu.yml
472482
with:
473483
provider: "CUDA"
474484
runner: "CUDA"
475485

476486
# Full execution of QEMU tests
477487
QEMU:
488+
if: false
478489
uses: ./.github/workflows/reusable_qemu.yml
479490
with:
480491
short_run: false
@@ -518,9 +529,11 @@ jobs:
518529
compatibility: '1'
519530

520531
SYCL:
532+
if: false
521533
uses: ./.github/workflows/reusable_sycl.yml
522534

523535
alpine:
536+
if: false
524537
name: Alpine
525538
env:
526539
HOST_WORKDIR: ${{github.workspace}}

.github/workflows/pr_push.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
push:
77
branches-ignore:
88
- 'dependabot/**'
9-
pull_request:
109

1110
concurrency:
1211
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

0 commit comments

Comments
 (0)