OILS / spec / testdata / config / ci.oil View on Github | oilshell.org

22 lines, 15 significant
1# Similar to .builds/cpp.yaml for sourcehut
2
3use dialect sourcehut
4
5const image = 'debian/buster'
6
7# This should be an error, YUP
8# image = 'oops'
9
10const packages = %(zip wget)
11
12const secrets = %(0123-abcd)
13
14TASK cpp {
15 cd oil
16 services/toil-worker.sh run-cpp
17}
18
19TASK publish-html {
20 cd oil
21 services/sourcehut.sh publish-html-assuming-key
22}