mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

The latest release of once_cell has an MSRV that is incompatible with the MSRV of the 1.18.x LTS release.
26 lines
621 B
YAML
26 lines
621 B
YAML
version: 2.1
|
|
jobs:
|
|
test-arm:
|
|
machine:
|
|
image: ubuntu-2004:202101-01
|
|
resource_class: arm.medium
|
|
environment:
|
|
# Change to pin rust version
|
|
RUST_STABLE: 1.60.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Install Rust
|
|
command: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup.sh
|
|
chmod +x rustup.sh
|
|
./rustup.sh -y --default-toolchain $RUST_STABLE
|
|
source "$HOME"/.cargo/env
|
|
# Only run Tokio tests
|
|
- run: cargo test --all-features -p tokio
|
|
|
|
workflows:
|
|
ci:
|
|
jobs:
|
|
- test-arm
|