From 604915e465fef4824fccf4aecd8bb9ee306be55c Mon Sep 17 00:00:00 2001 From: Marcus <117692400+marcus-jump@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:29:29 +0000 Subject: [PATCH] fix fuzz artifact publication --- .../fuzz_artifacts.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) rename .github/{workflows-disabled => workflows}/fuzz_artifacts.yml (78%) diff --git a/.github/workflows-disabled/fuzz_artifacts.yml b/.github/workflows/fuzz_artifacts.yml similarity index 78% rename from .github/workflows-disabled/fuzz_artifacts.yml rename to .github/workflows/fuzz_artifacts.yml index 4818070a83..23b2c090a6 100644 --- a/.github/workflows-disabled/fuzz_artifacts.yml +++ b/.github/workflows/fuzz_artifacts.yml @@ -2,8 +2,6 @@ name: Make Fuzz Artifacts on: pull_request: push: - branches: - - main workflow_dispatch: merge_group: jobs: @@ -21,16 +19,16 @@ jobs: - uses: dtolnay/rust-toolchain@1.69.0 - - name: Set extras - run: | - echo "EXTRAS=static" >> "$GITHUB_ENV" + - uses: firedancer-io/alpine-builder@main + name: Build with ASAN on Alpine + env: + MACHINE: linux_clang_x86_64_fuzz_asan + with: + command: make --output-sync=target -j fuzz-test - - name: Prepare asan + - name: List Artifacts run: | - echo "MACHINE=linux_clang_x86_64_fuzz_asan" >> "$GITHUB_ENV" - - - uses: firedancer-io/alpine-builder@main - name: Build with asan on Alpine + ls build/linux/clang/x86_64_fuzz_asan/fuzz-test - uses: firedancer-io/clusterfuzz-action@main if: ${{ github.ref == 'refs/heads/main' }}