Provide very basic woodpecker integration
This commit is contained in:
parent
e008ca453a
commit
9803cfedf0
|
@ -0,0 +1,41 @@
|
|||
labels:
|
||||
hostname: "nixos-x86-64"
|
||||
|
||||
variables:
|
||||
- &nix-config
|
||||
NIXOS_VERSION: "unstable"
|
||||
NIXPKGS_ALLOW_UNFREE: "1"
|
||||
NIXPKGS_ALLOW_INSECURE: "1"
|
||||
|
||||
steps:
|
||||
- name: Configure Nix Channels
|
||||
image: bash
|
||||
commands:
|
||||
- nix-channel --add https://nixos.org/channels/nixos-${NIXOS_VERSION} nixos
|
||||
- nix-channel --update
|
||||
variables:
|
||||
<<: *nix-config
|
||||
when:
|
||||
- evaluate: 'CI_PIPELINE_EVENT != "cron" && CI_PIPELINE_EVENT != "schedule"'
|
||||
|
||||
- name: Check Flake
|
||||
image: bash
|
||||
commands:
|
||||
- nix flake check
|
||||
variables:
|
||||
<<: *nix-config
|
||||
when:
|
||||
- evaluate: 'CI_PIPELINE_EVENT != "cron" && CI_PIPELINE_EVENT != "schedule"'
|
||||
|
||||
- name: Deploy
|
||||
image: bash
|
||||
commands:
|
||||
- eval "$(ssh-agent -s)"
|
||||
- chmod 0600 $SSH_PRIVATE_KEY
|
||||
- ssh-add $SSH_PRIVATE_KEY
|
||||
- nix develop --command deploy
|
||||
variables:
|
||||
<<: *nix-config
|
||||
when:
|
||||
- evaluate: 'CI_PIPELINE_EVENT != "cron" && CI_COMMIT_BRANCH == "master"'
|
||||
|
Loading…
Reference in New Issue