blob: d6b5fec567d3fb39fc47ee575a2133967f4b023a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
image: nixos/unstable
sources:
- https://git.alanpearce.eu/nix-packages
secrets:
- 5a04c7f9-bba4-40ab-b54c-a2daae2989e8
environment:
NIX_CONFIG: |
experimental-features = nix-command flakes
extra-substituters = https://binarycache.alanpearce.eu
extra-trusted-public-keys = binarycache.alanpearce.eu:ZwqO3XMuajPictjwih8OY2+RXnOKpjZEZFHJjGSxAI4=
SSH_KNOWN_HOSTS: |
linde.alanpearce.eu ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHHdh3J7dEmh9G+CVmzFEC8/ont35ZXpCFcpLUO863vC
repositories:
nixpkgs: https://nixos.org/channels/nixpkgs-unstable
tasks:
- ssh_config: |
echo $SSH_KNOWN_HOSTS >> ~/.ssh/known_hosts
- nixpkgs: |
nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
- build: |
nix shell -f '<nixpkgs>' nix-build-uncached -c nix-build-uncached nix-packages/ci.nix -A cacheOutputs
- push-cache: |
nix copy --substitute-on-destination \
--to ssh://nixremote@linde.alanpearce.eu \
./nix-packages
|