deployment: add arm musl targets (#726)
Adds musl targets to the nightly and deployment workflows.
This commit is contained in:
parent
4ceaf8d008
commit
460869f281
.github/workflows
|
@ -105,6 +105,11 @@ jobs:
|
|||
target: "aarch64-unknown-linux-gnu",
|
||||
cross: true,
|
||||
}
|
||||
- {
|
||||
os: "ubuntu-18.04",
|
||||
target: "aarch64-unknown-linux-musl",
|
||||
cross: true,
|
||||
}
|
||||
|
||||
# armv7
|
||||
- {
|
||||
|
@ -112,6 +117,11 @@ jobs:
|
|||
target: "armv7-unknown-linux-gnueabihf",
|
||||
cross: true,
|
||||
}
|
||||
- {
|
||||
os: "ubuntu-18.04",
|
||||
target: "armv7-unknown-linux-musleabihf",
|
||||
cross: true,
|
||||
}
|
||||
|
||||
# PowerPC 64 LE
|
||||
- {
|
||||
|
|
|
@ -101,6 +101,11 @@ jobs:
|
|||
target: "aarch64-unknown-linux-gnu",
|
||||
cross: true,
|
||||
}
|
||||
- {
|
||||
os: "ubuntu-18.04",
|
||||
target: "aarch64-unknown-linux-musl",
|
||||
cross: true,
|
||||
}
|
||||
|
||||
# armv7
|
||||
- {
|
||||
|
@ -108,6 +113,11 @@ jobs:
|
|||
target: "armv7-unknown-linux-gnueabihf",
|
||||
cross: true,
|
||||
}
|
||||
- {
|
||||
os: "ubuntu-18.04",
|
||||
target: "armv7-unknown-linux-musleabihf",
|
||||
cross: true,
|
||||
}
|
||||
|
||||
# PowerPC 64 LE
|
||||
- {
|
||||
|
|
Loading…
Reference in New Issue