# 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"

.deploy:
  stage: deploy
  tags:
    - deployer

ixvm-fra01:
  extends: .deploy
  #resource_group: ixvm-fra01
  script: './hack/deploy.sh "141.98.136.124" ""'

marukuru:
  extends: .deploy
  #resource_group: marukuru
  script: './hack/deploy.sh "103.105.48.15" "-p 20022"'

clouvider-fra01:
  extends: .deploy
  #resource_group: clouvider-fra01
  script: './hack/deploy.sh "193.228.196.57" ""'

kusakabe:
  extends: .deploy
  #resource_group: kusakabe
  script: './hack/deploy.sh "188.165.197.49" ""'

docker-push:
  stage: deploy
  tags:
    - deployer
  script: './hack/dockerpush.sh'