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.
cross
1 parent ea89514 commit 96068a4Copy full SHA for 96068a4
.github/workflows/rustls-rustcrypto.yml
@@ -81,3 +81,22 @@ jobs:
81
- run: cargo test --features tls12
82
- name: Test no_std with alloc
83
run: cargo test --no-default-features --features tls12,alloc
84
+
85
+ cross:
86
+ strategy:
87
+ matrix:
88
+ include:
89
+ - target: powerpc-unknown-linux-gnu
90
+ rust: 1.75.0 # MSRV
91
92
+ rust: stable
93
+ runs-on: ubuntu-latest
94
+ steps:
95
+ - uses: actions/checkout@v4
96
+ - run: ${{ matrix.deps }}
97
+ - uses: dtolnay/rust-toolchain@master
98
+ with:
99
+ toolchain: ${{ matrix.rust }}
100
+ targets: ${{ matrix.target }}
101
+ - uses: RustCrypto/actions/cross-install@master
102
+ - run: cross test --release --target ${{ matrix.target }} --all-features
0 commit comments