From 5874d93546cd5c23d1f4f72cb28adfe789b1da0f Mon Sep 17 00:00:00 2001 From: Fynn Date: Wed, 19 Jun 2024 09:09:24 -0300 Subject: [PATCH] Delete checking SDK and fuzzing --- .github/workflows/cflite_cron.yml | 41 ----------------------------- .github/workflows/cflite_pr.yml | 43 ------------------------------- .github/workflows/check_sdk.yml | 16 ------------ 3 files changed, 100 deletions(-) delete mode 100644 .github/workflows/cflite_cron.yml delete mode 100644 .github/workflows/cflite_pr.yml delete mode 100644 .github/workflows/check_sdk.yml diff --git a/.github/workflows/cflite_cron.yml b/.github/workflows/cflite_cron.yml deleted file mode 100644 index 44ac10c2..00000000 --- a/.github/workflows/cflite_cron.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: ClusterFuzzLite cron tasks -on: - workflow_dispatch: - push: - branches: - - main # Use your actual default branch here. - schedule: - - cron: '0 13 * * 6' # At 01:00 PM, only on Saturday -permissions: read-all -jobs: - Fuzzing: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: - - mode: batch - sanitizer: address - - mode: batch - sanitizer: memory - - mode: prune - sanitizer: address - - mode: coverage - sanitizer: coverage - steps: - - name: Build Fuzzers (${{ matrix.mode }} - ${{ matrix.sanitizer }}) - id: build - uses: google/clusterfuzzlite/actions/build_fuzzers@v1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - language: c # Change this to the language you are fuzzing. - sanitizer: ${{ matrix.sanitizer }} - - name: Run Fuzzers (${{ matrix.mode }} - ${{ matrix.sanitizer }}) - id: run - uses: google/clusterfuzzlite/actions/run_fuzzers@v1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - fuzz-seconds: 300 # 5 minutes - mode: ${{ matrix.mode }} - sanitizer: ${{ matrix.sanitizer }} - \ No newline at end of file diff --git a/.github/workflows/cflite_pr.yml b/.github/workflows/cflite_pr.yml deleted file mode 100644 index f70175e1..00000000 --- a/.github/workflows/cflite_pr.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: ClusterFuzzLite PR fuzzing -on: - pull_request: - paths: - - '**' -permissions: read-all -jobs: - PR: - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }} - cancel-in-progress: true - strategy: - fail-fast: false - matrix: - sanitizer: [address, undefined, memory] # Override this with the sanitizers you want. - steps: - - name: Build Fuzzers (${{ matrix.sanitizer }}) - id: build - uses: google/clusterfuzzlite/actions/build_fuzzers@v1 - with: - language: c # Change this to the language you are fuzzing. - github-token: ${{ secrets.GITHUB_TOKEN }} - sanitizer: ${{ matrix.sanitizer }} - # Optional but recommended: used to only run fuzzers that are affected - # by the PR. - # storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/OWNER/STORAGE-REPO-NAME.git - # storage-repo-branch: main # Optional. Defaults to "main" - # storage-repo-branch-coverage: gh-pages # Optional. Defaults to "gh-pages". - - name: Run Fuzzers (${{ matrix.sanitizer }}) - id: run - uses: google/clusterfuzzlite/actions/run_fuzzers@v1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - fuzz-seconds: 300 # 5 minutes - mode: 'code-change' - sanitizer: ${{ matrix.sanitizer }} - output-sarif: true - # Optional but recommended: used to download the corpus produced by - # batch fuzzing. - # storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/OWNER/STORAGE-REPO-NAME.git - # storage-repo-branch: main # Optional. Defaults to "main" - # storage-repo-branch-coverage: gh-pages # Optional. Defaults to "gh-pages". \ No newline at end of file diff --git a/.github/workflows/check_sdk.yml b/.github/workflows/check_sdk.yml deleted file mode 100644 index 8a26b452..00000000 --- a/.github/workflows/check_sdk.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Check SDK submodule version - -on: - workflow_dispatch: - push: - branches: - - master - - main - - develop - pull_request: - -jobs: - job_check_SDK: - name: Check Ethereum plugin SDK submodule is up-to-date - uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_check_ethereum_sdk.yml@v1