chore: setup ARM CI with CircleCI (#4417)

This commit is contained in:
Carl Lerche
2022-01-22 13:49:07 -08:00
committed by GitHub
parent 24f4ee31f0
commit 9a57a6a7c4
+22
View File
@@ -0,0 +1,22 @@
version: 2.1
jobs:
test-arm:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
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
source "$HOME"/.cargo/env
# Only run Tokio tests
- run: cargo test --all-features -p tokio
workflows:
ci:
jobs:
- test-arm