depot/.gitlab-ci.yml
Luke Granger-Brown b2e2f965c5 ops/nixos: rename various machines to comply with naming convention
* *-frantech should be frantech-*, it's provider first
* blade VMs now all begin bvm-
2021-03-28 00:34:36 +00:00

110 lines
2.5 KiB
YAML

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
stages:
- build
- deploy
nixCache:
stage: build
image: "nixos/nix:latest"
script:
- "nix run -f ./ third_party.nixpkgs.bash -c ./hack/populate_secrets.sh"
- "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"
- "cat ./result/other-systemPathJSON > systems.json"
artifacts:
paths:
- systems.json
expire_in: '30 days'
tags:
- cacher
.deploy:
stage: deploy
needs:
- job: nixCache
artifacts: true
tags:
- deployer
marukuru:
extends: .deploy
#resource_group: marukuru
script: './hack/deploy.sh "marukuru" "-p 20022"'
clouvider-fra01:
extends: .deploy
#resource_group: clouvider-fra01
script: './hack/deploy.sh "clouvider-fra01" ""'
kusakabe:
extends: .deploy
#resource_group: kusakabe
script: './hack/deploy.sh "kusakabe" ""'
clouvider-lon01:
extends: .deploy
script: './hack/deploy.sh "clouvider-lon01" ""'
totoro:
extends: .deploy
script: './hack/deploy.sh "totoro" ""'
swann:
extends: .deploy
script: './hack/deploy.sh "swann" ""'
etheroute-lon01:
extends: .deploy
script: './hack/deploy.sh "etheroute-lon01" ""'
blade-janeway:
extends: .deploy
script: './hack/deploy.sh "blade-janeway" ""'
# chakotay and kim are not autodeployed because they're usually off.
#blade-chakotay:
# extends: .deploy
# script: './hack/deploy.sh "blade-chakotay" ""'
#
#blade-kim:
# extends: .deploy
# script: './hack/deploy.sh "blade-kim" ""'
# paris and tuvok are not autodeployed because they are the routers, and I don't trust myself
#blade-paris:
# extends: .deploy
# script: './hack/deploy.sh "blade-paris" ""'
#
#blade-tuvok:
# extends: .deploy
# script: './hack/deploy.sh "blade-tuvok" ""'
blade-torres:
extends: .deploy
script: './hack/deploy.sh "blade-torres" ""'
bvm-nixosmgmt:
extends: .deploy
script: './hack/deploy.sh "bvm-nixosmgmt" ""'
frantech-las01:
extends: .deploy
script: './hack/deploy.sh "frantech-las01" ""'
frantech-lux01:
extends: .deploy
script: './hack/deploy.sh "frantech-lux01" ""'
frantech-nyc01:
extends: .deploy
script: './hack/deploy.sh "frantech-nyc01" ""'
docker-push:
stage: deploy
tags:
# We run this on cacher instead, because disk space.
- cacher
script: './hack/dockerpush.sh'