Skip to content

Commit

Permalink
Only run validation jobs in Merge Queues (bevyengine#7937)
Browse files Browse the repository at this point in the history
Co-authored-by: François <[email protected]>
  • Loading branch information
2 people authored and Shfty committed Mar 19, 2023
1 parent fa01c0f commit 14c1848
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/validation-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: validation jobs

on:
merge_group:
pull_request:
push:
branches:
- staging
Expand All @@ -13,6 +14,7 @@ env:

jobs:
build-and-install-on-iOS:
if: ${{ github.event_name == 'merge_group' }}
runs-on: macos-latest
timeout-minutes: 30
steps:
Expand All @@ -33,6 +35,7 @@ jobs:
run: cd examples/mobile && make install

build-android:
if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand Down Expand Up @@ -60,6 +63,7 @@ jobs:
run: ANDROID_NDK_ROOT=$ANDROID_NDK_LATEST_HOME cargo apk build --package bevy_mobile_example

run-examples-on-windows-dx12:
if: ${{ github.event_name == 'merge_group' }}
runs-on: windows-latest
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -94,6 +98,7 @@ jobs:
done
run-examples-on-wasm:
if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -150,6 +155,7 @@ jobs:
path: .github/start-wasm-example/screenshot-*.png

build-without-default-features:
if: ${{ github.event_name == 'merge_group' }}
timeout-minutes: 30
strategy:
matrix:
Expand Down

0 comments on commit 14c1848

Please sign in to comment.