aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2022-07-27 14:54:45 +0200
committerGitHub <noreply@github.com>2022-07-27 14:54:45 +0200
commitfb95c74d47a8749e5cdf9cee982fbf651a86b27b (patch)
treec3e42e518d21ad6bd9befed99db93ef317397e95 /.github
parentda9d03669ac84e25e303cf11114203051e1454da (diff)
.github/workflows/ci.yml: run race step on the self-hosted instance (#3271)
Race step takes ~8 minutes and is the 3rd longest after "build" and "dashboard".
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 714e7713b..0bc13e588 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -146,6 +146,20 @@ jobs:
key: cache
- name: run
run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-env make presubmit_race
+ race-self-hosted:
+ runs-on: self-hosted
+ steps:
+ - name: checkout
+ uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
+ with:
+ path: gopath/src/github.com/google/syzkaller
+ - name: cache
+ uses: actions/cache@99d99cd262b87f5f8671407a1e5c1ddfa36ad5ba # v1
+ with:
+ path: .cache
+ key: cache
+ - name: run
+ run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-env make presubmit_race
old:
runs-on: ubuntu-latest
steps: