2021-06-01 02:58:50 +02:00
|
|
|
stages:
|
2024-01-18 20:36:51 +01:00
|
|
|
- ci
|
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
|
|
|
|
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
|
2021-07-19 17:18:25 +02:00
|
|
|
|
2024-01-18 20:36:51 +01:00
|
|
|
# Add nix-community binary cache
|
|
|
|
- echo "extra-substituters = https://nix-community.cachix.org" >> /etc/nix/nix.conf
|
|
|
|
- echo "extra-trusted-public-keys = nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" >> /etc/nix/nix.conf
|
2021-08-13 17:20:40 +02:00
|
|
|
|
2024-01-18 20:36:51 +01:00
|
|
|
# Install direnv and nix-direnv
|
|
|
|
- nix-env -iA nixpkgs.direnv nixpkgs.nix-direnv
|
2022-06-23 00:14:53 +02:00
|
|
|
|
2024-01-18 20:36:51 +01:00
|
|
|
# Allow .envrc
|
|
|
|
- direnv allow
|
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:
|
|
|
|
paths:
|
|
|
|
- target
|
|
|
|
- .gitlab-ci.d
|