We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42cb652 commit cf16f00Copy full SHA for cf16f00
1 file changed
.github/workflows/ci.yml
@@ -187,7 +187,9 @@ jobs:
187
188
- name: Install cross
189
if: ${{ matrix.platform.cross == true }}
190
- uses: taiki-e/install-action@cross
+ # Install cross from source. Because latest release doesn't work with recent Rust
191
+ # when targeting Android. See https://github.com/cross-rs/cross/issues/1222
192
+ run: cargo install cross --git https://github.com/cross-rs/cross --rev 426e811
193
194
- name: Free Disk Space (Ubuntu)
195
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
0 commit comments