Skip to content

Commit 00dc9bf

Browse files
authored
skip bench (#359)
1 parent 316eac1 commit 00dc9bf

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/benchmarks.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ permissions:
2626
jobs:
2727
# Runs on every push to main to build the statistical baseline.
2828
benchmark_main:
29-
if: ${{ false }} # skip job
3029
name: Benchmark — ${{ matrix.bench.name }} (main baseline)
31-
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
30+
if: ${{ false && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') }} # skip job
3231
runs-on: ubuntu-latest
3332
timeout-minutes: 30
3433
strategy:
@@ -77,9 +76,8 @@ jobs:
7776
# Runs on same-repo PRs. Fork PRs are skipped — they have no access to
7877
# BENCHER_API_TOKEN, so the job would fail rather than silently skip.
7978
benchmark_pr:
80-
if: ${{ false }} # skip job
8179
name: Benchmark — ${{ matrix.bench.name }} (PR regression check)
82-
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
80+
if: ${{ false && (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }} # skip job
8381
runs-on: ubuntu-latest
8482
timeout-minutes: 30
8583
strategy:

0 commit comments

Comments
 (0)