File tree 1 file changed +6
-0
lines changed 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: validation jobs
2
2
3
3
on :
4
4
merge_group :
5
+ pull_request :
5
6
push :
6
7
branches :
7
8
- staging
13
14
14
15
jobs :
15
16
build-and-install-on-iOS :
17
+ if : ${{ github.event_name == 'merge_group' }}
16
18
runs-on : macos-latest
17
19
timeout-minutes : 30
18
20
steps :
33
35
run : cd examples/mobile && make install
34
36
35
37
build-android :
38
+ if : ${{ github.event_name == 'merge_group' }}
36
39
runs-on : ubuntu-latest
37
40
timeout-minutes : 30
38
41
steps :
60
63
run : ANDROID_NDK_ROOT=$ANDROID_NDK_LATEST_HOME cargo apk build --package bevy_mobile_example
61
64
62
65
run-examples-on-windows-dx12 :
66
+ if : ${{ github.event_name == 'merge_group' }}
63
67
runs-on : windows-latest
64
68
timeout-minutes : 60
65
69
steps :
94
98
done
95
99
96
100
run-examples-on-wasm :
101
+ if : ${{ github.event_name == 'merge_group' }}
97
102
runs-on : ubuntu-latest
98
103
timeout-minutes : 60
99
104
steps :
@@ -150,6 +155,7 @@ jobs:
150
155
path : .github/start-wasm-example/screenshot-*.png
151
156
152
157
build-without-default-features :
158
+ if : ${{ github.event_name == 'merge_group' }}
153
159
timeout-minutes : 30
154
160
strategy :
155
161
matrix :
You can’t perform that action at this time.
0 commit comments