File tree 1 file changed +14
-11
lines changed
1 file changed +14
-11
lines changed Original file line number Diff line number Diff line change 32
32
33
33
android_unversioned_tests :
34
34
# The type of runner that the job will run on
35
- runs-on : ubuntu-latest
35
+ runs-on : ${{ matrix.os }}
36
+
37
+ strategy :
38
+ fail-fast : false
39
+ matrix :
40
+ os :
41
+ - ubuntu-latest
42
+ - macos-latest
43
+ - windows-latest
36
44
37
45
steps :
38
46
# Checks-out your repository under $GITHUB_WORKSPACE for the job.
@@ -65,27 +73,22 @@ jobs:
65
73
needs : [generate_versions] # , sanity_check]
66
74
67
75
# The type of runner that the job will run on
68
- runs-on : ubuntu-latest
76
+ runs-on : ${{ matrix.os }}
69
77
70
78
strategy :
71
79
fail-fast : false
72
80
matrix :
81
+ os :
82
+ - ubuntu-latest
83
+ - macos-latest
84
+ - windows-latest
73
85
androidTestTask : ${{ fromJson(needs.generate_versions.outputs.matrix) }}
74
86
75
87
# Steps represent a sequence of tasks that will be executed as part of the job
76
88
steps :
77
89
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
78
90
- uses : actions/checkout@v2
79
91
80
- # # Sets up the NDK required by AGP 3.6.x
81
- # - name: Setup NDK
82
- # run: sudo $ANDROID_HOME/tools/bin/sdkmanager 'ndk;20.0.5594570'
83
-
84
- # - name: Install Rustup
85
- # run: |
86
- # curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain none
87
- # echo "$HOME/.cargo/bin" >> $GITHUB_PATH
88
-
89
92
- name : Setup Rust
90
93
run : |
91
94
rustup toolchain install stable
You can’t perform that action at this time.
0 commit comments