Skip to content

Commit

Permalink
move fuzzer runs to container as well
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Mar 23, 2024
1 parent 77a7ac2 commit 15dedc3
Showing 1 changed file with 6 additions and 48 deletions.
54 changes: 6 additions & 48 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,18 +263,11 @@ jobs:
linux-presto-fuzzer-run:
name: "Presto Fuzzer"
runs-on: ubuntu-latest
container: ghcr.io/facebookincubator/velox-dev:centos8
needs: compile
timeout-minutes: 120
steps:

- name: "Checkout Repo"
uses: actions/checkout@v4
with:
ref: "${{ inputs.ref }}"

- name: "Install dependencies"
run: source ./scripts/setup-ubuntu.sh

- uses: dorny/paths-filter@v3
if: github.event_name == 'pull_request'
id: changes
Expand Down Expand Up @@ -341,18 +334,11 @@ jobs:
linux-spark-aggregate-fuzzer-run:
name: "Spark Aggregate Fuzzer"
runs-on: ubuntu-latest
container: ghcr.io/facebookincubator/velox-dev:centos8
needs: compile
timeout-minutes: 60
steps:

- name: "Checkout Repo"
uses: actions/checkout@v4
with:
ref: "${{ inputs.ref }}"

- name: "Install dependencies"
run: source ./scripts/setup-ubuntu.sh

- name: Download spark aggregation fuzzer
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -382,19 +368,12 @@ jobs:
spark-bias-fuzzer:
name: "Spark Fuzzer"
runs-on: ubuntu-latest
container: ghcr.io/facebookincubator/velox-dev:centos8
needs: compile
if: ${{ needs.compile.outputs.spark == 'true' }}
timeout-minutes: 120
steps:

- name: "Checkout Repo"
uses: actions/checkout@v4
with:
ref: "${{ inputs.ref }}"

- name: "Install dependencies"
run: source ./scripts/setup-ubuntu.sh

- name: Download spark expression fuzzer
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -432,18 +411,11 @@ jobs:
spark-fuzzer:
name: "Spark Fuzzer"
runs-on: ubuntu-latest
container: ghcr.io/facebookincubator/velox-dev:centos8
needs: compile
timeout-minutes: 120
steps:

- name: "Checkout Repo"
uses: actions/checkout@v4
with:
ref: "${{ inputs.ref }}"

- name: "Install dependencies"
run: source ./scripts/setup-ubuntu.sh

- name: Download spark expression fuzzer
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -480,18 +452,11 @@ jobs:
linux-aggregate-fuzzer-run:
name: "Aggregate Fuzzer"
runs-on: ubuntu-latest
container: ghcr.io/facebookincubator/velox-dev:centos8
needs: compile
timeout-minutes: 120
steps:

- name: "Checkout Repo"
uses: actions/checkout@v4
with:
ref: "${{ inputs.ref }}"

- name: "Install dependencies"
run: source ./scripts/setup-ubuntu.sh

- name: Download aggregation fuzzer
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -522,18 +487,11 @@ jobs:
linux-join-fuzzer-run:
name: "Join Fuzzer"
runs-on: ubuntu-latest
container: ghcr.io/facebookincubator/velox-dev:centos8
needs: compile
timeout-minutes: 120
steps:

- name: "Checkout Repo"
uses: actions/checkout@v4
with:
ref: "${{ inputs.ref }}"

- name: "Install dependencies"
run: source ./scripts/setup-ubuntu.sh

- name: Download join fuzzer
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 15dedc3

Please sign in to comment.