From df5c8fa25ff3ed977df7bc12ac25b1e6b8ef2b21 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 22 Aug 2020 17:48:23 +0200 Subject: tools/docker: add old-env old-env is based on Ubuntu 16.04 and allows to test executor build on older distributions. Fixes #2055 --- .github/workflows/ci.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to '.github/workflows/ci.yml') 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] -- cgit mrf-deployment