@@ -107,6 +107,11 @@ jobs:
107107 steps :
108108 - uses : actions/checkout@v5
109109
110+ - name : Set up QEMU
111+ uses : docker/setup-qemu-action@v3
112+ with :
113+ platforms : linux/arm/v7
114+
110115 - name : Determine MSRV for all-features
111116 id : msrv
112117 uses : ./.github/actions/determine-msrv
@@ -132,28 +137,23 @@ jobs:
132137 with :
133138 key : cross-armv7
134139
135- - name : Install cross
136- uses : taiki-e/install-action@v2
137- with :
138- tool : cross
139-
140140 - name : Run tests (default features)
141- run : cross +${{ env.MSRV_ALSA }} test --workspace --verbose --target ${{ env.TARGET }}
141+ run : cargo +${{ env.MSRV_ALSA }} test --workspace --verbose --target ${{ env.TARGET }}
142142
143143 - name : Check examples (default features)
144- run : cross +${{ env.MSRV_ALSA }} check --examples --workspace --verbose --target ${{ env.TARGET }}
144+ run : cargo +${{ env.MSRV_ALSA }} check --examples --workspace --verbose --target ${{ env.TARGET }}
145145
146146 - name : Run tests (no default features)
147- run : cross +${{ env.MSRV_ALSA }} test --no-default-features --workspace --verbose --target ${{ env.TARGET }}
147+ run : cargo +${{ env.MSRV_ALSA }} test --no-default-features --workspace --verbose --target ${{ env.TARGET }}
148148
149149 - name : Check examples (no default features)
150- run : cross +${{ env.MSRV_ALSA }} test --no-default-features --workspace --verbose --target ${{ env.TARGET }}
150+ run : cargo +${{ env.MSRV_ALSA }} test --no-default-features --workspace --verbose --target ${{ env.TARGET }}
151151
152152 - name : Run tests (all features)
153- run : cross +${{ steps.msrv.outputs.all-features }} test --all-features --workspace --verbose --target ${{ env.TARGET }}
153+ run : cargo +${{ steps.msrv.outputs.all-features }} test --all-features --workspace --verbose --target ${{ env.TARGET }}
154154
155155 - name : Check examples (all features)
156- run : cross +${{ steps.msrv.outputs.all-features }} test --all-features --workspace --verbose --target ${{ env.TARGET }}
156+ run : cargo +${{ steps.msrv.outputs.all-features }} test --all-features --workspace --verbose --target ${{ env.TARGET }}
157157
158158 # Windows (x86_64 and i686)
159159 windows :
0 commit comments