ci: Test macOS ARM and Linux armv6 (#430)

This commit is contained in:
Clement Tsang 2021-03-04 14:24:21 -05:00 committed by GitHub
parent d5c2ce6607
commit 637a3949dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

View File

@ -94,6 +94,13 @@ jobs:
cross: false,
rust: stable,
}
# Disabled, unfortunately.
# - {
# os: "macOS-11.0",
# target: "x86_64-apple-darwin",
# cross: false,
# rust: stable,
# }
- {
os: "windows-2019",
target: "i686-pc-windows-msvc",
@ -129,6 +136,14 @@ jobs:
rust: stable,
}
# armv6
- {
os: "ubuntu-18.04",
target: "arm-unknown-linux-gnueabihf",
cross: true,
rust: stable,
}
# PowerPC 64 LE
- {
os: "ubuntu-18.04",
@ -137,6 +152,14 @@ jobs:
rust: stable,
}
# macOS ARM
- {
os: "macOS-latest",
target: "aarch64-apple-darwin",
cross: true,
rust: stable,
}
steps:
- uses: actions/checkout@v2