From 51cfe8e5099c61aa64746eb323891f0ee28b67c9 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 25 Dec 2020 09:44:26 +0100 Subject: .github/workflows: remove fuzzit.dev All fuzzit.dev jobs become broken recently, see e.g.: https://github.com/google/syzkaller/pull/2351/checks?check_run_id=1601794199 ... {"status":"Status: Downloaded newer image for gcr.io/fuzzit-public/stretch-llvm8:64bdedf"} Downloading fuzzit cli/agent... Error: Process completed with exit code 1. https://github.com/fuzzitdev/fuzzit is archived now and the README says: "the standalone service will soon be deperecated". So I guess it's time to remove fuzzit.dev integration. --- .github/workflows/ci.yml | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6da2454b..97b993a42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -100,27 +100,3 @@ jobs: 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] - 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: regression - if: ${{ github.event_name == 'pull_request' }} - # We use syz-old-env because it contains Go 1.14. - # syz-env contains Go 1.15 and go-fuzz is broken with Go 1.15: - # https://github.com/dvyukov/go-fuzz/issues/294 - run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-old-env tools/fuzzit.sh local-regression - - name: fuzzing - if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - env: - FUZZIT_API_KEY: ${{ secrets.FUZZIT_API_KEY }} - run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-old-env tools/fuzzit.sh fuzzing -- cgit mrf-deployment