aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-08-22 17:48:23 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-08-22 21:42:13 +0200
commitdf5c8fa25ff3ed977df7bc12ac25b1e6b8ef2b21 (patch)
tree89291e396fea9518de14487c98ca4d4245828e26 /.github/workflows
parent49a5a1ab2f94353aa29edebdabc9eda5b168020b (diff)
tools/docker: add old-env
old-env is based on Ubuntu 16.04 and allows to test executor build on older distributions. Fixes #2055
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml17
1 files changed, 14 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index aab76bb79..d1cdda31b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -41,7 +41,6 @@ jobs:
flags: unittests
dashboard:
runs-on: ubuntu-latest
- needs: [smoke]
steps:
- name: checkout
uses: actions/checkout@v2
@@ -61,7 +60,6 @@ jobs:
flags: dashboard
arch:
runs-on: ubuntu-latest
- needs: [smoke]
steps:
- name: checkout
uses: actions/checkout@v2
@@ -76,7 +74,6 @@ jobs:
run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-big-env make presubmit_arch
race:
runs-on: ubuntu-latest
- needs: [smoke]
steps:
- name: checkout
uses: actions/checkout@v2
@@ -89,6 +86,20 @@ jobs:
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:
+ - name: checkout
+ uses: actions/checkout@v2
+ with:
+ path: gopath/src/github.com/google/syzkaller
+ - name: cache
+ uses: actions/cache@v1
+ with:
+ path: .cache
+ key: cache
+ - name: run
+ run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-old-env make presubmit_old
fuzzit:
runs-on: ubuntu-latest
needs: [smoke]