Browse Source
Merge pull request #2260 from cfallin/arm32-compile-ci
Add ARM32 build test to CI.
pull/2261/head
Chris Fallin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
.github/workflows/main.yml
|
|
@ -108,9 +108,11 @@ jobs: |
|
|
|
# Check a few builds of the cranelift backend |
|
|
|
# - only x86 backend support, |
|
|
|
# - only arm64 backend support, |
|
|
|
# - experimental arm32 support, |
|
|
|
# - no debug_assertions. |
|
|
|
- run: cargo check --manifest-path=./cranelift/Cargo.toml --bin clif-util --no-default-features --features=cranelift-codegen/arm64 |
|
|
|
- run: cargo check --manifest-path=./cranelift/Cargo.toml --bin clif-util --no-default-features --features=cranelift-codegen/x86 |
|
|
|
- run: cargo check --manifest-path=./cranelift/Cargo.toml --bin clif-util --no-default-features --features=cranelift-codegen/arm32 |
|
|
|
- run: cargo check --manifest-path=./cranelift/Cargo.toml --bin clif-util |
|
|
|
env: |
|
|
|
CARGO_PROFILE_DEV_DEBUG_ASSERTIONS: false |
|
|
|