This commit is contained in:
Brendan Golden 2023-07-27 21:11:28 +00:00
parent 402527ad1e
commit 1324fd22af

View file

@ -31,10 +31,6 @@ update:
# we have a custom domain # we have a custom domain
- git remote rm origin && git remote add origin ssh://git@gitlab.skynet.ie:2222/compsoc/skynet/nixos.git - git remote rm origin && git remote add origin ssh://git@gitlab.skynet.ie:2222/compsoc/skynet/nixos.git
- git push origin HEAD:$CI_COMMIT_REF_NAME - git push origin HEAD:$CI_COMMIT_REF_NAME
# update teh hash for further along in the pipeline
# https://nsirap.com/posts/043-change-value-of-variable-in-gitlab%20copy/
- printf '%s' "FLAKE_COMMIT=$(git rev-parse HEAD)" >> flake.env
artifacts:
reports: reports:
dotenv: flake.env dotenv: flake.env
only: only:
@ -48,7 +44,7 @@ build:
before_script: before_script:
- . "$HOME/.nix-profile/etc/profile.d/nix.sh" - . "$HOME/.nix-profile/etc/profile.d/nix.sh"
# use the new flake # use the new flake
- (if [ "$FLAKE_COMMIT" != "" ]; then git pull origin $FLAKE_COMMIT; fi); - git pull
script: script:
- nix --experimental-features 'nix-command flakes' run nixpkgs#colmena -- build - nix --experimental-features 'nix-command flakes' run nixpkgs#colmena -- build
@ -63,7 +59,7 @@ deploy:
- chmod 700 ~/.ssh - chmod 700 ~/.ssh
# load nix environment # load nix environment
- . "$HOME/.nix-profile/etc/profile.d/nix.sh" - . "$HOME/.nix-profile/etc/profile.d/nix.sh"
- (if [ "$FLAKE_COMMIT" != "" ]; then git pull origin $FLAKE_COMMIT; fi); - git pull
script: script:
# dns is always deployed first # dns is always deployed first
- nix --experimental-features 'nix-command flakes' run nixpkgs#colmena -- apply --on @active-dns - nix --experimental-features 'nix-command flakes' run nixpkgs#colmena -- apply --on @active-dns