Skip to content

Commit 0e9b5aa

Browse files
committed
wip
1 parent d3ce8da commit 0e9b5aa

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Test benchmarks
22
on:
33
push:
4-
branches:
5-
- main
4+
# branches:
5+
# - main
66
pull_request:
77
schedule:
88
- cron: "00 15 * * *"
@@ -17,6 +17,7 @@ jobs:
1717
- ruby: head
1818
- ruby: truffleruby-head
1919
skip: protoboeuf-encode sequel
20+
continue-on-error: true
2021
if: ${{ github.event_name != 'schedule' || github.repository == 'Shopify/yjit-bench' }}
2122
steps:
2223
- uses: actions/checkout@v3
@@ -33,12 +34,14 @@ jobs:
3334
for benchmark in $SKIP_BENCHMARKS; do
3435
rm -rf "benchmarks/${benchmark}.rb" "benchmarks/${benchmark}/"
3536
done
36-
./run_benchmarks.rb
37+
echo ./run_benchmarks.rb
38+
exit 1
3739
env:
3840
WARMUP_ITRS: '1'
3941
MIN_BENCH_ITRS: '1'
4042
MIN_BENCH_TIME: '0'
4143
SKIP_BENCHMARKS: ${{ matrix.skip }}
44+
continue-on-error: ${{ matrix.continue-on-error }}
4245

4346
- name: Test run_once.sh
4447
run: ./run_once.sh --yjit-stats benchmarks/railsbench/benchmark.rb

0 commit comments

Comments
 (0)