depot/.gitlab-ci.yml

53 lines
1.2 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"
tags:
- cacher
.deploy:
stage: deploy
tags:
- deployer
ixvm-fra01:
extends: .deploy
2020-05-09 23:13:35 +00:00
#resource_group: ixvm-fra01
2020-05-09 23:06:29 +00:00
script: './hack/deploy.sh "141.98.136.124" ""'
2020-05-09 23:01:47 +00:00
marukuru:
extends: .deploy
2020-05-09 23:13:35 +00:00
#resource_group: marukuru
2020-05-09 23:09:33 +00:00
script: './hack/deploy.sh "103.105.48.15" "-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-05-09 23:06:29 +00:00
script: './hack/deploy.sh "193.228.196.57" ""'
2020-09-06 16:27:45 +00:00
kusakabe:
extends: .deploy
#resource_group: kusakabe
script: './hack/deploy.sh "188.165.197.49" ""'
2020-10-04 01:34:09 +00:00
clouvider-lon01:
extends: .deploy
script: './hack/deploy.sh "185.198.188.29" ""'
2020-10-04 01:34:09 +00:00
docker-push:
stage: deploy
tags:
- deployer
script: './hack/dockerpush.sh'