@@ -439,9 +439,6 @@ jobs:
439439 - target : armv7-unknown-linux-gnueabihf
440440 - target : aarch64-unknown-linux-gnu
441441 rustflags : --cfg tokio_taskdump
442-
443- # Run a platform without AtomicU64 and no const Mutex::new
444- - target : armv5te-unknown-linux-gnueabi
445442 steps :
446443 - uses : actions/checkout@v3
447444 - name : Install Rust stable
@@ -464,10 +461,10 @@ jobs:
464461 run : |
465462 set -euxo pipefail
466463 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 }}
468465 env :
469466 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 }}
471468
472469 cross-test-without-parking_lot :
473470 needs : basics
@@ -481,9 +478,6 @@ jobs:
481478 - target : armv7-unknown-linux-gnueabihf
482479 - target : aarch64-unknown-linux-gnu
483480 rustflags : --cfg tokio_taskdump
484-
485- # Run a platform without AtomicU64 and no const Mutex::new
486- - target : armv5te-unknown-linux-gnueabi
487481 steps :
488482 - uses : actions/checkout@v3
489483 - name : Install Rust stable
@@ -510,10 +504,10 @@ jobs:
510504 run : |
511505 set -euxo pipefail
512506 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 }}
514508 env :
515509 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 }}
517511
518512 # See https://github.com/tokio-rs/tokio/issues/5187
519513 no-atomic-u64-test :
@@ -541,10 +535,10 @@ jobs:
541535 - name : test tokio --all-features
542536 run : |
543537 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
545539 env :
546540 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
548542
549543 no-atomic-u64-check :
550544 name : Check tokio --feature-powerset --depth 2 on i686-unknown-linux-gnu without AtomicU64
@@ -566,10 +560,10 @@ jobs:
566560
567561 # https://github.com/tokio-rs/tokio/pull/5356
568562 # 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
571565 env :
572- RUSTFLAGS : --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings --cfg tokio_no_atomic_u64
566+ RUSTFLAGS : --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings
573567
574568 features :
575569 name : features ${{ matrix.name }}
@@ -823,7 +817,7 @@ jobs:
823817 with :
824818 toolchain : ${{ env.rust_stable }}
825819 - 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
827821
828822 - uses : Swatinem/rust-cache@v2
829823 - name : test tokio
0 commit comments