conduit/.gitlab-ci.yml

67 lines
1.7 KiB
YAML
Raw Normal View History

stages:
2024-01-18 19:36:51 +00:00
- ci
2024-01-18 21:31:46 +00:00
- artifacts
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
2024-01-18 19:36:51 +00:00
before_script:
# Enable nix-command and flakes
- if command -v nix > /dev/null; then echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf; fi
2024-01-18 19:36:51 +00:00
# Add nix-community binary cache
- 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
2024-01-18 19:36:51 +00:00
# Install direnv and nix-direnv
- if command -v nix > /dev/null; then nix-env -iA nixpkgs.direnv nixpkgs.nix-direnv; fi
2024-01-18 19:36:51 +00:00
# Allow .envrc
- if command -v nix > /dev/null; then direnv allow; fi
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
image: nixos/nix:2.19.2
script:
2024-01-18 19:36:51 +00:00
- direnv exec . engage
cache:
key: nix
2024-01-18 19:36:51 +00:00
paths:
- target
- .gitlab-ci.d
2024-01-18 21:31:46 +00:00
oci-image:x86_64-unknown-linux-gnu:
2024-01-18 21:31:46 +00:00
stage: artifacts
image: nixos/nix:2.19.2
script:
- nix build .#oci-image
# Make the output less difficult to find
- cp result oci-image.tar.gz
2024-01-18 21:31:46 +00:00
artifacts:
paths:
- oci-image.tar.gz
debian:x86_64-unknown-linux-gnu:
stage: artifacts
image: rust:1.70.0
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
- mv target/debian/*.deb conduit.deb
artifacts:
paths:
- conduit.deb
cache:
key: debian
paths:
- target
- .gitlab-ci.d