2021-06-01 02:58:50 +02:00
stages :
2024-01-18 20:36:51 +01:00
- ci
2024-01-18 22:31:46 +01:00
- artifacts
2021-05-13 09:57:11 +02:00
2021-03-13 20:00:13 +01:00
variables :
2024-01-18 20:36:51 +01:00
# Makes some things print in color
TERM : ansi
2021-08-13 17:20:40 +02:00
2024-01-18 20:36:51 +01:00
before_script :
# Enable nix-command and flakes
2024-01-19 21:10:23 +01:00
- if command -v nix > /dev/null; then echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf; fi
2021-07-19 17:18:25 +02:00
2024-01-25 07:20:48 +01:00
# Add our own binary cache
- if command -v nix > /dev/null; then echo "extra-substituters = https://nix.computer.surgery/conduit" >> /etc/nix/nix.conf; fi
- if command -v nix > /dev/null; then echo "extra-trusted-public-keys = conduit:ZGAf6P6LhNvnoJJ3Me3PRg7tlLSrPxcQ2RiE5LIppjo=" >> /etc/nix/nix.conf; fi
2024-01-25 07:16:29 +01:00
# Add crane binary cache
- if command -v nix > /dev/null; then echo "extra-substituters = https://crane.cachix.org" >> /etc/nix/nix.conf; fi
- if command -v nix > /dev/null; then echo "extra-trusted-public-keys = crane.cachix.org-1:8Scfpmn9w+hGdXH/Q9tTLiYAE/2dnJYRJP7kl80GuRk=" >> /etc/nix/nix.conf; fi
2024-01-18 20:36:51 +01:00
# Add nix-community binary cache
2024-01-19 21:10:23 +01:00
- if command -v nix > /dev/null; then echo "extra-substituters = https://nix-community.cachix.org" >> /etc/nix/nix.conf; fi
- if command -v nix > /dev/null; then echo "extra-trusted-public-keys = nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" >> /etc/nix/nix.conf; fi
2021-08-13 17:20:40 +02:00
2024-01-18 20:36:51 +01:00
# Install direnv and nix-direnv
2024-01-19 21:10:23 +01:00
- if command -v nix > /dev/null; then nix-env -iA nixpkgs.direnv nixpkgs.nix-direnv; fi
2022-06-23 00:14:53 +02:00
2024-01-18 20:36:51 +01:00
# Allow .envrc
2024-01-19 21:10:23 +01:00
- if command -v nix > /dev/null; then direnv allow; fi
2021-08-13 17:20:40 +02:00
2024-01-18 20:36:51 +01:00
# Set CARGO_HOME to a cacheable path
- export CARGO_HOME="$(git rev-parse --show-toplevel)/.gitlab-ci.d/cargo"
2022-02-18 22:29:55 +01:00
2024-01-18 20:36:51 +01:00
ci :
stage : ci
image : nixos/nix:2.19.2
2022-02-18 22:30:02 +01:00
script :
2024-01-18 20:36:51 +01:00
- direnv exec . engage
cache :
2024-01-19 21:10:23 +01:00
key : nix
2024-01-18 20:36:51 +01:00
paths :
- target
- .gitlab-ci.d
2024-01-18 22:31:46 +01:00
2024-01-23 20:22:18 +01:00
static:x86_64-unknown-linux-musl :
stage : artifacts
image : nixos/nix:2.19.2
script :
# Push artifacts and build requirements to binary cache
- ./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl
# Make the output less difficult to find
- cp result/bin/conduit conduit
artifacts :
paths :
- conduit
2024-01-23 20:49:52 +01:00
static:aarch64-unknown-linux-musl :
stage : artifacts
image : nixos/nix:2.19.2
script :
# Push artifacts and build requirements to binary cache
- ./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl
# Make the output less difficult to find
- cp result/bin/conduit conduit
artifacts :
paths :
- conduit
2024-01-25 07:24:34 +01:00
oci-image:x86_64-unknown-linux-gnu :
2024-01-18 22:31:46 +01:00
stage : artifacts
image : nixos/nix:2.19.2
script :
2024-01-25 20:37:35 +01:00
# Push artifacts and build requirements to binary cache
#
# Since the OCI image package is based on the binary package, this has the
# fun side effect of uploading the normal binary too. Conduit users who are
# deploying with Nix can leverage this fact by adding our binary cache to
# their systems.
- ./bin/nix-build-and-cache .#oci-image
2024-01-18 22:31:46 +01:00
# Make the output less difficult to find
2024-01-25 07:24:34 +01:00
- cp result oci-image.tar.gz
2024-01-18 22:31:46 +01:00
artifacts :
paths :
2024-01-25 07:24:34 +01:00
- oci-image.tar.gz
2024-01-19 21:10:23 +01:00
2024-01-26 04:38:25 +01:00
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
2024-01-25 07:24:34 +01:00
debian:x86_64-unknown-linux-gnu :
2024-01-19 21:10:23 +01:00
stage : artifacts
2024-01-23 07:48:58 +01:00
# See also `rust-toolchain.toml`
2024-01-26 05:33:15 +01:00
image : rust:1.75.0
2024-01-19 21:10:23 +01:00
script :
- apt-get update && apt-get install -y --no-install-recommends libclang-dev
- cargo install cargo-deb
- cargo deb
# Make the output less difficult to find
2024-01-25 07:24:34 +01:00
- mv target/debian/*.deb conduit.deb
2024-01-19 21:10:23 +01:00
artifacts :
paths :
2024-01-25 07:24:34 +01:00
- conduit.deb
2024-01-19 21:10:23 +01:00
cache :
key : debian
paths :
- target
- .gitlab-ci.d