add package to build an aarch64 oci image
And build it as an artifact in CI.
This commit is contained in:
parent
2a04a361e0
commit
7c1a3e41d9
2 changed files with 27 additions and 0 deletions
|
@ -86,6 +86,23 @@ oci-image:x86_64-unknown-linux-gnu:
|
||||||
paths:
|
paths:
|
||||||
- oci-image.tar.gz
|
- oci-image.tar.gz
|
||||||
|
|
||||||
|
oci-image:aarch64-unknown-linux-musl:
|
||||||
|
stage: artifacts
|
||||||
|
needs:
|
||||||
|
# Wait for the static binary job to finish before starting so we don't have
|
||||||
|
# to build that twice for no reason
|
||||||
|
- static:aarch64-unknown-linux-musl
|
||||||
|
image: nixos/nix:2.19.2
|
||||||
|
script:
|
||||||
|
# Push artifacts and build requirements to binary cache
|
||||||
|
- ./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl
|
||||||
|
|
||||||
|
# Make the output less difficult to find
|
||||||
|
- cp result oci-image.tar.gz
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- oci-image.tar.gz
|
||||||
|
|
||||||
debian:x86_64-unknown-linux-gnu:
|
debian:x86_64-unknown-linux-gnu:
|
||||||
stage: artifacts
|
stage: artifacts
|
||||||
# See also `rust-toolchain.toml`
|
# See also `rust-toolchain.toml`
|
||||||
|
|
10
flake.nix
10
flake.nix
|
@ -182,6 +182,16 @@
|
||||||
default = package pkgsHost;
|
default = package pkgsHost;
|
||||||
|
|
||||||
oci-image = mkOciImage pkgsHost self.packages.${system}.default;
|
oci-image = mkOciImage pkgsHost self.packages.${system}.default;
|
||||||
|
|
||||||
|
# Build an OCI image from the musl aarch64 build so we don't have to
|
||||||
|
# build for aarch64 twice (to make a gnu version specifically for the
|
||||||
|
# OCI image)
|
||||||
|
oci-image-aarch64-unknown-linux-musl = mkOciImage
|
||||||
|
pkgsHost
|
||||||
|
self.packages.${system}.static-aarch64-unknown-linux-musl;
|
||||||
|
|
||||||
|
# Don't build a musl x86_64 OCI image because that would be pointless.
|
||||||
|
# Just use the gnu one (i.e. `self.packages."x86_64-linux".oci-image`).
|
||||||
} // builtins.listToAttrs (
|
} // builtins.listToAttrs (
|
||||||
builtins.map
|
builtins.map
|
||||||
(crossSystem: {
|
(crossSystem: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue