forked from Mic92/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
196 lines (165 loc) · 4.1 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
---
kind: pipeline
type: exec
name: Build NixOS and home-manager
platform:
os: linux
arch: amd64
steps:
- name: build
commands:
- rm -rf $BUILDDIR/gcroots.tmp && mkdir -p $BUILDDIR/gcroots.tmp
- nix shell nixpkgs#git -c nix build -L --out-link $BUILDDIR/gcroots.tmp/result -f ./nixos/ci.nix
- rm -rf $BUILDDIR/gcroots && mv $BUILDDIR/gcroots.tmp $BUILDDIR/gcroots
environment:
BUILDDIR: /var/lib/drone/nix-build
- name: upload
commands:
- "\n nix path-info --json -r $BUILDDIR/gcroots/result* > $BUILDDIR/path-info.json\n # only local built derivations\n # drone-runner-exec-chroot contains character device files\n nix shell 'nixpkgs#jq' -c jq -r 'map(select(.ca == null and .signatures == null)) | map(.path) | .[]' < $BUILDDIR/path-info.json > paths\n nix shell 'nixpkgs#cachix' -c cachix push --jobs 32 mic92 < paths\n "
environment:
BUILDDIR: /var/lib/drone/nix-build
CACHIX_SIGNING_KEY:
from_secret: CACHIX_SIGNING_KEY
when:
event:
exclude:
- pull_request
status:
- failure
- success
- name: send irc notification
commands:
- "LOGNAME=drone nix run .#irc-announce -- irc.r 6667 drone \"#xxx\" \"build $DRONE_SYSTEM_PROTO://$DRONE_SYSTEM_HOST/$DRONE_REPO/$DRONE_BUILD_NUMBER : $DRONE_BUILD_STATUS\" || true"
environment:
BUILDDIR: /var/lib/drone/nix-build
when:
event:
exclude:
- pull_request
status:
- failure
- success
trigger:
branch:
- master
event:
- push
- pull_request
---
kind: pipeline
type: exec
name: Deploy to eve
platform:
os: linux
arch: amd64
steps:
- name: deploy
commands:
- eval $(nix shell nixpkgs#openssh -c ssh-agent) && echo "$DEPLOY_SSH_KEY" | nix shell nixpkgs#openssh -c ssh-add - && nix run .#deploy.eve
environment:
BUILDDIR: /var/lib/drone/nix-build
DEPLOY_SSH_KEY:
from_secret: DEPLOY_SSH_KEY
trigger:
event:
- promote
- rollback
---
kind: pipeline
type: exec
name: Deploy to turingmachine
platform:
os: linux
arch: amd64
steps:
- name: deploy
commands:
- eval $(nix shell nixpkgs#openssh -c ssh-agent) && echo "$DEPLOY_SSH_KEY" | nix shell nixpkgs#openssh -c ssh-add - && nix run .#deploy.turingmachine
environment:
BUILDDIR: /var/lib/drone/nix-build
DEPLOY_SSH_KEY:
from_secret: DEPLOY_SSH_KEY
trigger:
event:
- promote
- rollback
---
kind: pipeline
type: exec
name: Deploy to eva
platform:
os: linux
arch: amd64
steps:
- name: deploy
commands:
- eval $(nix shell nixpkgs#openssh -c ssh-agent) && echo "$DEPLOY_SSH_KEY" | nix shell nixpkgs#openssh -c ssh-add - && nix run .#deploy.eva
environment:
BUILDDIR: /var/lib/drone/nix-build
DEPLOY_SSH_KEY:
from_secret: DEPLOY_SSH_KEY
trigger:
event:
- promote
- rollback
---
kind: pipeline
type: exec
name: Deploy to rock
platform:
os: linux
arch: amd64
steps:
- name: deploy
commands:
- eval $(nix shell nixpkgs#openssh -c ssh-agent) && echo "$DEPLOY_SSH_KEY" | nix shell nixpkgs#openssh -c ssh-add - && nix run .#deploy.rock
environment:
BUILDDIR: /var/lib/drone/nix-build
DEPLOY_SSH_KEY:
from_secret: DEPLOY_SSH_KEY
trigger:
event:
- promote
- rollback
---
kind: pipeline
type: exec
name: Deploy to joerg@turingmachine
platform:
os: linux
arch: amd64
steps:
- name: deploy
commands:
- eval $(nix shell nixpkgs#openssh -c ssh-agent) && echo "$DEPLOY_SSH_KEY" | nix shell nixpkgs#openssh -c ssh-add - && nix run .#deploy.joerg@turingmachine
environment:
BUILDDIR: /var/lib/drone/nix-build
DEPLOY_SSH_KEY:
from_secret: DEPLOY_SSH_KEY
trigger:
event:
- promote
- rollback
---
kind: pipeline
type: exec
name: Deploy to joerg@eve
platform:
os: linux
arch: amd64
steps:
- name: deploy
commands:
- eval $(nix shell nixpkgs#openssh -c ssh-agent) && echo "$DEPLOY_SSH_KEY" | nix shell nixpkgs#openssh -c ssh-add - && nix run .#deploy.joerg@eve
environment:
BUILDDIR: /var/lib/drone/nix-build
DEPLOY_SSH_KEY:
from_secret: DEPLOY_SSH_KEY
trigger:
event:
- promote
- rollback
---
kind: signature
hmac: 4e2a410e1a09b48e07cdae9c863cf496f260ea2da0a41e3b2b383beef3b41360
...