We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9addd4 + a072d95 commit c38e78aCopy full SHA for c38e78a
1 file changed
.github/workflows/ci.yaml
@@ -62,15 +62,26 @@ jobs:
62
if: runner.os == 'macOS'
63
64
exotic_targets:
65
- name: Ensure compilation on exotic targets
+ name: Ensure compilation on various targets
66
runs-on: ubuntu-latest
67
steps:
68
- uses: actions/checkout@v2
69
+
70
- uses: actions-rs/toolchain@v1
71
with:
- target: aarch64-linux-android
72
+ target: i686-unknown-linux-gnu
73
- - uses: Swatinem/rust-cache@v1
74
+ - name: Install gcc-multilib
75
+ run: sudo apt-get install gcc-multilib
76
+ - name: Check compilation for x86 32bit
77
+ uses: actions-rs/cargo@v1
78
+ with:
79
+ command: check
80
+ args: --target i686-unknown-linux-gnu
81
82
+ - uses: actions-rs/toolchain@v1
83
84
+ target: aarch64-linux-android
85
86
- name: Check compilation for android
87
uses: actions-rs/cargo@v1
0 commit comments