Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
pr-comment-start:
name: Create PR Comment
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'workflow-server-test')
timeout-minutes: 2

steps:
Expand Down Expand Up @@ -119,6 +119,7 @@ jobs:
build:
name: Build Packages
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.labels.*.name, 'workflow-server-test') }}
timeout-minutes: 30
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
Expand Down Expand Up @@ -148,6 +149,7 @@ jobs:
name: Benchmark Local (${{ matrix.app }})
runs-on: ubuntu-latest
needs: build
if: ${{ !contains(github.event.pull_request.labels.*.name, 'workflow-server-test') }}
timeout-minutes: 30
strategy:
fail-fast: false
Expand Down Expand Up @@ -228,6 +230,7 @@ jobs:
name: Benchmark Postgres (${{ matrix.app }})
runs-on: ubuntu-latest
needs: build
if: ${{ !contains(github.event.pull_request.labels.*.name, 'workflow-server-test') }}
timeout-minutes: 30
strategy:
fail-fast: false
Expand Down Expand Up @@ -329,6 +332,7 @@ jobs:
name: Benchmark Vercel (${{ matrix.app.name }})
runs-on: ubuntu-latest
needs: build
if: ${{ !contains(github.event.pull_request.labels.*.name, 'workflow-server-test') }}
timeout-minutes: 60
strategy:
fail-fast: false
Expand Down Expand Up @@ -421,6 +425,7 @@ jobs:
getCommunityWorldsMatrix:
name: Get Community Worlds Matrix
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.labels.*.name, 'workflow-server-test') }}
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand All @@ -437,6 +442,7 @@ jobs:

benchmark-community:
name: Benchmark Community World (${{ matrix.world.name }})
if: ${{ !contains(github.event.pull_request.labels.*.name, 'workflow-server-test') }}
needs: [build, getCommunityWorldsMatrix]
strategy:
fail-fast: false
Expand Down