We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea3e16 commit 8a81e28Copy full SHA for 8a81e28
.github/workflows/ci.yml
@@ -102,3 +102,21 @@ jobs:
102
- name: Install cargo-hack
103
uses: taiki-e/install-action@cargo-hack
104
- run: cargo hack build --rust-version
105
+ target-compatibility:
106
+ runs-on: ubuntu-latest
107
+ strategy:
108
+ fail-fast: false
109
+ matrix:
110
+ rust: [nightly]
111
+ target:
112
+ - aarch64-unknown-nto-qnx800
113
+ - x86_64-pc-nto-qnx800
114
+ steps:
115
+ - uses: actions/checkout@v4
116
+ - name: Install Rust
117
+ run: |
118
+ rustup update ${{ matrix.rust }} --no-self-update
119
+ rustup default ${{ matrix.rust }}
120
+ rustup component add rust-src --toolchain nightly
121
+ - name: Cargo check
122
+ run: cargo +nightly check -Zbuild-std --target ${{ matrix.target }}
0 commit comments