From 580fefe63b221aca08a506ae225a3b336312d01b Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 6 Oct 2020 16:15:31 +0300 Subject: [PATCH] ci: run the hello_world.v task first in the performance-regressions job --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b536357a0..3b477b24a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,10 +38,10 @@ jobs: run: ./v version && ./vmaster/v version - name: Build the repeat tool run: ./v cmd/tools/repeat.v - - name: Repeat -o v.c cmd/v - run: cmd/tools/repeat --series 2 --count 10 --warmup 3 --fail_percent 10 './v -show-timings -o v.c cmd/v' './vmaster/v -show-timings -o v.c cmd/v' - name: Repeat -o hw.c examples/hello_world.v - run: cmd/tools/repeat --series 2 --count 10 --warmup 3 --fail_percent 10 './v -show-timings -o hw.c examples/hello_world.v' './vmaster/v -show-timings -o hw.c examples/hello_world.v' + run: cmd/tools/repeat --series 3 --count 15 --warmup 3 --fail_percent 10 './v -show-timings -o hw.c examples/hello_world.v' './vmaster/v -show-timings -o hw.c examples/hello_world.v' + - name: Repeat -o v.c cmd/v + run: cmd/tools/repeat --series 3 --count 15 --warmup 3 --fail_percent 10 './v -show-timings -o v.c cmd/v' './vmaster/v -show-timings -o v.c cmd/v' ubuntu-tcc: runs-on: ubuntu-18.04