File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 89
89
90
90
test-32bit :
91
91
runs-on : ubuntu-latest
92
- env :
93
- TARGET : i686-unknown-linux-gnu
92
+ strategy :
93
+ matrix :
94
+ target : [ i686-unknown-linux-gnu, armv7-linux-androideabi ]
94
95
steps :
95
96
- uses : actions/checkout@v3
96
97
- uses : dtolnay/rust-toolchain@stable
@@ -99,14 +100,16 @@ jobs:
99
100
uses : dtolnay/rust-toolchain@master
100
101
with :
101
102
toolchain : stable
102
- targets : ${{ env.TARGET }}
103
+ targets : ${{ matrix.target }}
103
104
- uses : taiki-e/install-action@v1
104
105
with :
105
106
tool : cross
107
+ - name : " check"
108
+ run : cross check -p gix --target ${{ matrix.target }}
106
109
- name : " Test (unit)"
107
110
# run high-level unit tests that exercise a lot of code while being pure Rust to ease building test binaries.
108
111
# TODO: figure out why `git` doesn't pick up environment configuration so build scripts fail when using `-p gix`.
109
- run : cross test -p gix-hashtable --target ${{ env.TARGET }}
112
+ run : cross test -p gix-hashtable --target ${{ matrix.target }}
110
113
111
114
installation :
112
115
strategy :
You can’t perform that action at this time.
0 commit comments