File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -48,24 +48,24 @@ jobs:
48
48
- run : cargo test --workspace --all-features --release
49
49
50
50
cross :
51
- name : cross test --target ${{ matrix.target }}
51
+ name : cargo test --target ${{ matrix.target }}
52
52
strategy :
53
53
fail-fast : false
54
54
matrix :
55
55
target :
56
- - i686-unknown-linux-gnu
57
56
- aarch64-unknown-linux-gnu
57
+ - armv7-unknown-linux-gnueabihf
58
+ - i686-unknown-linux-gnu
58
59
runs-on : ubuntu-latest
59
60
steps :
60
61
- uses : actions/checkout@v3
61
62
- name : Install Rust
62
63
run : rustup update nightly && rustup default nightly
63
- - name : Install cross
64
- uses : taiki-e/install-action@cross
65
- - run : cross test --target ${{ matrix.target }} --workspace --all-features
66
- - run : cross test --target ${{ matrix.target }} --workspace --all-features --release
67
- # TODO: https://github.com/rust-lang/futures-rs/issues/2451
68
- if : matrix.target != 'aarch64-unknown-linux-gnu'
64
+ - uses : taiki-e/setup-cross-toolchain-action@v1
65
+ with :
66
+ target : ${{ matrix.target }}
67
+ - run : cargo test --target ${{ matrix.target }} --workspace --all-features $DOCTEST_XCOMPILE
68
+ - run : cargo test --target ${{ matrix.target }} --workspace --all-features --release $DOCTEST_XCOMPILE
69
69
70
70
core-msrv :
71
71
name : cargo +${{ matrix.rust }} build (futures-{core, io, sink})
You can’t perform that action at this time.
0 commit comments