2021-06-01 00:58:50 +00:00
stages :
2024-01-18 19:36:51 +00:00
- ci
2024-01-18 21:31:46 +00:00
- artifacts
2024-06-09 19:52:45 +00:00
- deploy
2021-05-13 07:57:11 +00:00
2021-03-13 19:00:13 +00:00
variables :
2024-01-18 19:36:51 +00:00
# Makes some things print in color
TERM : ansi
2021-08-13 15:20:40 +00:00
2024-01-18 19:36:51 +00:00
before_script :
# Enable nix-command and flakes
2024-01-19 20:10:23 +00:00
- if command -v nix > /dev/null; then echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf; fi
2021-07-19 15:18:25 +00:00
2024-08-13 04:26:24 +00:00
# Disable IFD, to ensure we are able to build without it
- if command -v nix > /dev/null; then echo "allow-import-from-derivation = false" >> /etc/nix/nix.conf; fi
2024-01-25 06:20:48 +00:00
# Add our own binary cache
2024-04-28 02:48:28 +00:00
- if command -v nix > /dev/null && [ -n "$ATTIC_ENDPOINT" ] && [ -n "$ATTIC_CACHE" ]; then echo "extra-substituters = $ATTIC_ENDPOINT/$ATTIC_CACHE" >> /etc/nix/nix.conf; fi
2024-03-05 07:47:46 +00:00
- if command -v nix > /dev/null && [ -n "$ATTIC_PUBLIC_KEY" ]; then echo "extra-trusted-public-keys = $ATTIC_PUBLIC_KEY" >> /etc/nix/nix.conf; fi
2024-01-25 06:16:29 +00: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 19:36:51 +00:00
# Add nix-community binary cache
2024-01-19 20:10:23 +00: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 15:20:40 +00:00
2024-01-18 19:36:51 +00:00
# Install direnv and nix-direnv
2024-04-30 08:48:24 +00:00
- if command -v nix > /dev/null; then nix profile install --impure --inputs-from . nixpkgs#direnv nixpkgs#nix-direnv; fi
2022-06-22 22:14:53 +00:00
2024-01-18 19:36:51 +00:00
# Allow .envrc
2024-01-19 20:10:23 +00:00
- if command -v nix > /dev/null; then direnv allow; fi
2021-08-13 15:20:40 +00:00
2024-01-18 19:36:51 +00:00
# Set CARGO_HOME to a cacheable path
- export CARGO_HOME="$(git rev-parse --show-toplevel)/.gitlab-ci.d/cargo"
2022-02-18 21:29:55 +00:00
2024-01-18 19:36:51 +00:00
ci :
stage : ci
2024-05-22 05:20:31 +00:00
image : nixos/nix:2.18.2
2022-02-18 21:30:02 +00:00
script :
2024-04-30 08:48:24 +00:00
- ./bin/nix-build-and-cache ci
2024-03-05 20:05:50 +00:00
2024-01-18 19:36:51 +00:00
- direnv exec . engage
cache :
paths :
- target
- .gitlab-ci.d
2024-01-18 21:31:46 +00:00
2024-03-05 07:12:17 +00:00
artifacts :
2024-01-23 19:22:18 +00:00
stage : artifacts
2024-05-22 05:20:31 +00:00
image : nixos/nix:2.18.2
2024-01-23 19:22:18 +00:00
script :
2024-04-30 08:48:24 +00:00
- ./bin/nix-build-and-cache packages
2024-06-09 19:52:45 +00:00
pages :
stage : deploy
image : nixos/nix:2.18.2
script :
- direnv exec . mdbook build
artifacts :
paths :
- public
only :
- main