@@ -439,9 +439,6 @@ jobs:
439
439
- target : armv7-unknown-linux-gnueabihf
440
440
- target : aarch64-unknown-linux-gnu
441
441
rustflags : --cfg tokio_taskdump
442
-
443
- # Run a platform without AtomicU64 and no const Mutex::new
444
- - target : armv5te-unknown-linux-gnueabi
445
442
steps :
446
443
- uses : actions/checkout@v3
447
444
- name : Install Rust stable
@@ -464,10 +461,10 @@ jobs:
464
461
run : |
465
462
set -euxo pipefail
466
463
cargo nextest run -p tokio --all-features --target ${{ matrix.target }}
467
- cargo test --doc -p tokio --all-features --target ${{ matrix.target }} -- --test-threads 1
464
+ cargo test --doc -p tokio --all-features --target ${{ matrix.target }}
468
465
env :
469
466
RUST_TEST_THREADS : 1
470
- RUSTFLAGS : --cfg tokio_unstable -Dwarnings --cfg tokio_no_ipv6 --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}
467
+ RUSTFLAGS : --cfg tokio_unstable -Dwarnings --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}
471
468
472
469
cross-test-without-parking_lot :
473
470
needs : basics
@@ -481,9 +478,6 @@ jobs:
481
478
- target : armv7-unknown-linux-gnueabihf
482
479
- target : aarch64-unknown-linux-gnu
483
480
rustflags : --cfg tokio_taskdump
484
-
485
- # Run a platform without AtomicU64 and no const Mutex::new
486
- - target : armv5te-unknown-linux-gnueabi
487
481
steps :
488
482
- uses : actions/checkout@v3
489
483
- name : Install Rust stable
@@ -510,10 +504,10 @@ jobs:
510
504
run : |
511
505
set -euxo pipefail
512
506
cargo nextest run -p tokio --features full,test-util --target ${{ matrix.target }}
513
- cargo test --doc -p tokio --features full,test-util --target ${{ matrix.target }} -- --test-threads 1
507
+ cargo test --doc -p tokio --features full,test-util --target ${{ matrix.target }}
514
508
env :
515
509
RUST_TEST_THREADS : 1
516
- RUSTFLAGS : --cfg tokio_unstable -Dwarnings --cfg tokio_no_ipv6 --cfg tokio_no_parking_lot --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}
510
+ RUSTFLAGS : --cfg tokio_unstable -Dwarnings --cfg tokio_no_parking_lot --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}
517
511
518
512
# See https://github.com/tokio-rs/tokio/issues/5187
519
513
no-atomic-u64-test :
@@ -541,10 +535,10 @@ jobs:
541
535
- name : test tokio --all-features
542
536
run : |
543
537
cargo nextest run -Zbuild-std --target target-specs/i686-unknown-linux-gnu.json -p tokio --all-features
544
- cargo test --doc -Zbuild-std --target target-specs/i686-unknown-linux-gnu.json -p tokio --all-features -- --test-threads 1
538
+ cargo test --doc -Zbuild-std --target target-specs/i686-unknown-linux-gnu.json -p tokio --all-features
545
539
env :
546
540
RUST_TEST_THREADS : 1
547
- RUSTFLAGS : --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings --cfg tokio_no_atomic_u64 --cfg tokio_no_tuning_tests
541
+ RUSTFLAGS : --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings --cfg tokio_no_tuning_tests
548
542
549
543
no-atomic-u64-check :
550
544
name : Check tokio --feature-powerset --depth 2 on i686-unknown-linux-gnu without AtomicU64
@@ -566,10 +560,10 @@ jobs:
566
560
567
561
# https://github.com/tokio-rs/tokio/pull/5356
568
562
# https://github.com/tokio-rs/tokio/issues/5373
569
- - name : Check with const_mutex_new
570
- run : cargo hack check -p tokio --feature-powerset --depth 2 --keep-going
563
+ - name : Check
564
+ run : cargo hack check -Zbuild-std --target target-specs/i686-unknown-linux-gnu.json - p tokio --feature-powerset --depth 2 --keep-going
571
565
env :
572
- RUSTFLAGS : --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings --cfg tokio_no_atomic_u64
566
+ RUSTFLAGS : --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings
573
567
574
568
features :
575
569
name : features ${{ matrix.name }}
@@ -823,7 +817,7 @@ jobs:
823
817
with :
824
818
toolchain : ${{ env.rust_stable }}
825
819
- name : Install wasm-pack
826
- run : curl https://rustwasm.github.io/ wasm-pack/installer/init.sh -sSf | sh
820
+ uses : taiki-e/install-action@ wasm-pack
827
821
828
822
- uses : Swatinem/rust-cache@v2
829
823
- name : test tokio
0 commit comments