depot/.gitlab-ci.yml

107 lines
2.4 KiB
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
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"
script:
2020-05-10 01:32:05 +00:00
- "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
2020-05-09 23:01:47 +00:00
marukuru:
extends: .deploy
2020-05-09 23:13:35 +00:00
#resource_group: marukuru
2020-11-05 01:29:26 +00:00
script: './hack/deploy.sh "marukuru" "-p 20022"'
2020-05-09 23:01:47 +00:00
clouvider-fra01:
extends: .deploy
2020-05-09 23:13:35 +00:00
#resource_group: clouvider-fra01
2020-11-05 01:29:26 +00:00
script: './hack/deploy.sh "clouvider-fra01" ""'
2020-09-06 16:27:45 +00:00
kusakabe:
extends: .deploy
#resource_group: kusakabe
2020-11-05 01:29:26 +00:00
script: './hack/deploy.sh "kusakabe" ""'
2020-10-04 01:34:09 +00:00
clouvider-lon01:
extends: .deploy
2020-11-05 01:29:26 +00:00
script: './hack/deploy.sh "clouvider-lon01" ""'
totoro:
extends: .deploy
script: './hack/deploy.sh "totoro" ""'
swann:
extends: .deploy
script: './hack/deploy.sh "swann" ""'
2020-12-27 11:28:21 +00:00
etheroute-lon01:
extends: .deploy
script: './hack/deploy.sh "etheroute-lon01" ""'
2021-02-09 01:18:06 +00:00
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" ""'
2021-02-09 01:18:06 +00:00
# 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" ""'
2021-02-09 01:18:06 +00:00
blade-torres:
extends: .deploy
script: './hack/deploy.sh "blade-torres" ""'
las01-frantech:
extends: .deploy
script: './hack/deploy.sh "las01-frantech" ""'
lux01-frantech:
extends: .deploy
script: './hack/deploy.sh "lux01-frantech" ""'
nyc01-frantech:
extends: .deploy
script: './hack/deploy.sh "nyc01-frantech" ""'
2020-10-04 01:34:09 +00:00
docker-push:
stage: deploy
tags:
# We run this on cacher instead, because disk space.
- cacher
script: './hack/dockerpush.sh'