ci: Test macOS ARM and Linux armv6 (#430)
This commit is contained in:
parent
d5c2ce6607
commit
637a3949dd
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue