deployment: add arm musl targets (#726)

Adds musl targets to the nightly and deployment workflows.
This commit is contained in:
Clement Tsang 2022-05-07 15:53:39 -04:00 committed by GitHub
parent 4ceaf8d008
commit 460869f281
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View File

@ -105,6 +105,11 @@ jobs:
target: "aarch64-unknown-linux-gnu", target: "aarch64-unknown-linux-gnu",
cross: true, cross: true,
} }
- {
os: "ubuntu-18.04",
target: "aarch64-unknown-linux-musl",
cross: true,
}
# armv7 # armv7
- { - {
@ -112,6 +117,11 @@ jobs:
target: "armv7-unknown-linux-gnueabihf", target: "armv7-unknown-linux-gnueabihf",
cross: true, cross: true,
} }
- {
os: "ubuntu-18.04",
target: "armv7-unknown-linux-musleabihf",
cross: true,
}
# PowerPC 64 LE # PowerPC 64 LE
- { - {

View File

@ -101,6 +101,11 @@ jobs:
target: "aarch64-unknown-linux-gnu", target: "aarch64-unknown-linux-gnu",
cross: true, cross: true,
} }
- {
os: "ubuntu-18.04",
target: "aarch64-unknown-linux-musl",
cross: true,
}
# armv7 # armv7
- { - {
@ -108,6 +113,11 @@ jobs:
target: "armv7-unknown-linux-gnueabihf", target: "armv7-unknown-linux-gnueabihf",
cross: true, cross: true,
} }
- {
os: "ubuntu-18.04",
target: "armv7-unknown-linux-musleabihf",
cross: true,
}
# PowerPC 64 LE # PowerPC 64 LE
- { - {