-
Notifications
You must be signed in to change notification settings - Fork 30
447 lines (423 loc) · 11.7 KB
/
test.yml
File metadata and controls
447 lines (423 loc) · 11.7 KB
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
name: Test
on:
push:
branches: ["main"]
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
# Enable manual trigger for easy debugging
workflow_dispatch:
permissions:
contents: read
pull-requests: write
jobs:
output:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Use output"
id: use-output
uses: ./
with:
version: latest
verb: core
args: container from --address=alpine with-exec --args echo,-n,"hello world" stdout
- name: "Use output (check)"
run: |
target='${{ steps.use-output.outputs.output }}'
if [[ "$target" == "hello world" ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
- name: "Use trailing output"
id: use-trailing-output
uses: ./
with:
version: latest
verb: core
args: container from --address=alpine with-exec --args echo,-n,-e,"hello world\n" stdout
- name: "Use output (check)"
run: |
target='${{ steps.use-trailing-output.outputs.output }}'
result='hello world
'
if [[ "$target" == "$result" ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
- name: "Use multiline output"
id: use-multiline-output
uses: ./
with:
version: latest
verb: core
args: container from --address=alpine with-exec --args echo,-n,-e,"hello\nworld" stdout
- name: "Use output (check)"
run: |
target='${{ steps.use-multiline-output.outputs.output }}'
result='hello
world'
if [[ "$target" == "$result" ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
traceurl:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "TraceURL with cloud-token"
id: traceurl-token
uses: ./
with:
version: latest
verb: core
args: version
cloud-token: dag_dagger_sBIv6DsjNerWvTqt2bSFeigBUqWxp9bhh3ONSSgeFnw
- name: "Check traceURL output (should be set)"
run: |
url='${{ steps.traceurl-token.outputs.traceURL }}'
if [[ "$url" =~ ^https://dagger.cloud/.+/traces/.+ ]]; then
echo "traceURL found: $url"
exit 0
else
echo "traceURL not found"
exit 1
fi
- name: "TraceURL without cloud-token"
id: traceurl-nil
uses: ./
with:
version: latest
verb: core
args: version
- name: "Check traceURL output (should NOT be set)"
run: |
url='${{ steps.traceurl-nil.outputs.traceURL }}'
if [[ "$url" =~ ^https://dagger.cloud/traces/setup ]]; then
echo "traceURL correctly not set"
exit 0
else
echo "traceURL was set: $url"
exit 1
fi
version:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Use latest"
id: use-latest
uses: ./
with:
version: latest
verb: core
args: version
- name: "Use latest (check)"
run: |
target='${{ steps.use-latest.outputs.output }}'
if [[ "$target" =~ v[0-9]*\.[0-9]*\.[0-9]* ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
- name: "Use v0.13.5"
id: use-v0-13-5
uses: ./
with:
version: v0.13.5
verb: core
args: version
- name: "Use v0.13.5 (check)"
run: |
target='${{ steps.use-v0-13-5.outputs.output }}'
if [[ "$target" =~ v0\.13\.5 ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
- name: "Use 0.13.5 (no v)"
id: use-0-13-5
uses: ./
with:
version: 0.13.5
verb: core
args: version
- name: "Use 0.13.5 (check)"
run: |
target='${{ steps.use-0-13-5.outputs.output }}'
if [[ "$target" =~ v0\.13\.5 ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
- name: "Use commit"
id: use-commit
uses: ./
with:
commit: 540b4d1490f253054140f9249e823adf111e1c06
verb: core
args: version
- name: "Use commit (check)"
run: |
target='${{ steps.use-commit.outputs.output }}'
if [[ "$target" =~ v0\.13\.6-[0-9]+-540b4d1490f2 ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
- name: "Use head"
id: use-head
uses: ./
with:
commit: head
verb: core
args: version
- name: "Use head (check)"
run: |
target='${{ steps.use-commit.outputs.output }}'
if [[ "$target" =~ v[0-9]*\.[0-9]*\.[0-9]*-[0-9]+-[0-9a-f]{12} ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
call:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Test call"
id: test-call
uses: ./
with:
module: github.com/shykes/daggerverse/hello@v0.3.0
call: hello
- name: "Test call (check)"
run: |
target='${{ steps.test-call.outputs.output }}'
if [[ "$target" == "hello, world!" ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
call-multiline-backslash:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Test call with backslash continuation"
id: test-call-backslash
uses: ./
with:
version: latest
verb: core
args: |-
container \
from --address=alpine \
with-exec --args echo,-n,"hello world" \
stdout
- name: "Test call backslash (check)"
run: |
target='${{ steps.test-call-backslash.outputs.output }}'
if [[ "$target" == "hello world" ]]; then
echo "matches"
exit 0
else
echo "does not match: $target"
exit 1
fi
call-multiline-newline:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Test call with bare newlines"
id: test-call-newline
uses: ./
with:
version: latest
verb: core
args: |-
container
from --address=alpine
with-exec --args echo,-n,"hello world"
stdout
- name: "Test call newline (check)"
run: |
target='${{ steps.test-call-newline.outputs.output }}'
if [[ "$target" == "hello world" ]]; then
echo "matches"
exit 0
else
echo "does not match: $target"
exit 1
fi
check:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: "kpenfound/dag"
ref: "3ea64a3711c2d785db3133dd380ae74ac1440f79"
path: "./dag"
- name: "Test check"
uses: ./
with:
check: "**"
workdir: "./dag/hello"
enable-github-summary: true
- name: "Test check"
uses: ./
with:
verb: "check"
workdir: "./dag/hello"
shell:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Test shell"
id: test-shell
uses: ./
with:
shell: 'container | from alpine | with-exec echo,-n,"hello world!" | stdout'
- name: "Test shell (check)"
run: |
target='${{ steps.test-shell.outputs.output }}'
result='hello world!'
if [[ "$target" == "$result" ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
summary-path:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Test summary-path"
id: test-summary-path
uses: ./
with:
version: latest
verb: core
args: version
summary-path: "/tmp/custom-summary.md"
- name: "Check custom summary file"
run: |
if [[ -f "/tmp/custom-summary.md" ]] && [[ -s "/tmp/custom-summary.md" ]]; then
echo "Custom summary file exists and has content"
echo "Content preview:"
head -10 "/tmp/custom-summary.md"
else
echo "Custom summary file missing or empty"
exit 1
fi
enable-github-summary:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Test enable-github-summary=true (default)"
id: test-github-summary-enabled
uses: ./
with:
version: latest
verb: core
args: version
- name: "Check github summary enabled"
run: |
if [[ -n "${GITHUB_STEP_SUMMARY}" ]]; then
echo "GitHub step summary was written (default behavior)"
else
echo "GitHub step summary not written when it should have been"
exit 1
fi
nocall:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Only Install"
uses: ./
- name: "Test Install"
run: |
dagger core version
existing-install:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "preinstall dagger"
run: |
curl -fsS https://dl.dagger.io/dagger/install.sh \
| BIN_DIR=/usr/local/bin DAGGER_VERSION="v0.18.17" sh
- name: "Install with version"
uses: ./
with:
version: "v0.18.16"
- name: "Test Install"
run: |
if [[ "$(dagger core version)" == "v0.18.16" ]]; then
exit 0
else
echo "Existing install was not overridden"
exit 1
fi
commit-install:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "preinstall dagger"
run: |
curl -fsS https://dl.dagger.io/dagger/install.sh \
| BIN_DIR=/usr/local/bin DAGGER_VERSION="v0.18.17" sh
- name: "Install with version"
uses: ./
with:
commit: "71f2e104b045ddc3b0cc611b81370707bf21bc27"
- name: "Test Install"
run: |
if [[ "$(dagger version)" == *"v0.18.19-250918123923-71f2e104b045"* ]]; then
exit 0
else
echo "Existing install was not overridden"
exit 1
fi
latest-install:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "preinstall dagger"
run: |
curl -fsS https://dl.dagger.io/dagger/install.sh \
| BIN_DIR=/usr/local/bin DAGGER_VERSION="v0.18.17" sh
- name: "Install with version"
uses: ./
with:
version: "latest"
- name: "Test Install"
run: |
if [[ "$(dagger version)" != "v0.18.17" ]]; then
exit 0
else
echo "Existing install was not overridden with latest"
exit 1
fi