depot/.gitlab-ci.yml

29 lines
695 B
YAML
Raw Normal View History

stages:
- build
- deploy
2020-05-08 16:48:34 +00:00
nixCache:
stage: build
2020-05-08 16:48:34 +00:00
image: "nixos/nix:latest"
2020-05-09 22:49:32 +00:00
only:
- disabled_while_iterating
2020-05-08 16:48:34 +00:00
script:
2020-05-08 17:02:42 +00:00
- "mkdir -p ops/secrets"
- "cp ${OPS_SECRETS_DEFAULT_NIX} ops/secrets/default.nix"
- "nix build -v -f ./ci-root.nix --substituters \"https://cache.nixos.org s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\""
- "nix copy -v --to 's3://lukegb-nix-cache?endpoint=storage.googleapis.com' ./result"
.deploy:
stage: deploy
variables:
SSH_ARGS: ''
script: './hack/deploy.sh "$DEPLOY_TO" "$SSH_ARGS"'
tags:
- deployer
ixvm-fra01:
extends: .deploy
variables:
# TODO(lukegb): DNS...
DEPLOY_TO: "141.98.136.124"