Skip to content

Commit 28e810d

Browse files
authored
ci: make the vab-compiles-v-examples job, more robust to github runner and Android SDK changes (#20462)
1 parent fd269ca commit 28e810d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/vab_ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: vab CI
22

33
on:
4+
workflow_call:
45
push:
56
paths-ignore:
67
- "**.md"
@@ -19,7 +20,7 @@ jobs:
1920
- uses: actions/setup-java@v2
2021
with:
2122
distribution: 'adopt'
22-
java-version: 8
23+
java-version: 11
2324

2425
- uses: actions/checkout@v3
2526
- name: Build V
@@ -38,7 +39,10 @@ jobs:
3839
run: vab --help
3940

4041
- name: Run vab doctor
41-
run: vab doctor
42+
run: |
43+
vab doctor
44+
which d8 || true
45+
which dx || true
4246
4347
- name: Build graphical V examples as APK
4448
run: |

0 commit comments

Comments
 (0)