From ed5a10d0b5c4af2571d879837bbedee5c71e231b Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Mon, 8 Apr 2024 19:42:59 +0200 Subject: [PATCH] Inter-job dependency on ubuntu ci (#2021) * inter-job dependency. * conc --- .github/workflows/build_and_test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 4f94807c20..a3ff06b30d 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -85,6 +85,7 @@ jobs: ubuntu-doc: runs-on: ubuntu-22.04 + needs: ubuntu steps: - name: Remove Dotnet & Haskell run: rm -rf /usr/share/dotnet && rm -rf /opt/ghc @@ -115,6 +116,7 @@ jobs: ubuntu-miri: runs-on: ubuntu-22.04 + needs: ubuntu steps: - name: Remove Dotnet & Haskell run: rm -rf /usr/share/dotnet && rm -rf /opt/ghc @@ -185,6 +187,7 @@ jobs: ubuntu-clippy: runs-on: ubuntu-22.04 + needs: ubuntu steps: - name: Remove Dotnet & Haskell run: rm -rf /usr/share/dotnet && rm -rf /opt/ghc @@ -218,6 +221,7 @@ jobs: ubuntu-check: runs-on: ubuntu-22.04 + needs: ubuntu steps: - uses: actions-rs/toolchain@v1 with: @@ -268,6 +272,7 @@ jobs: ubuntu-concolic: runs-on: ubuntu-latest + needs: ubuntu steps: - uses: actions-rs/toolchain@v1 with: @@ -306,6 +311,7 @@ jobs: run: . ./bindings/pylibafl/.env/bin/activate && cd ./fuzzers/baby_fuzzer && python3 baby_fuzzer.py 2>&1 | grep "Bye" fuzzers: + needs: ubuntu strategy: matrix: os: [ubuntu-latest]