forked from nuke-build/nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.space.kts
36 lines (33 loc) · 822 Bytes
/
.space.kts
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
// ------------------------------------------------------------------------------
// <auto-generated>
//
// This code was generated.
//
// - To turn off auto-generation set:
//
// [SpaceAutomation (AutoGenerate = false)]
//
// - To trigger manual generation invoke:
//
// nuke --generate-configuration SpaceAutomation --host SpaceAutomation
//
// </auto-generated>
// ------------------------------------------------------------------------------
job("continuous") {
git {
depth = UNLIMITED_DEPTH
refSpec {
+"refs/heads/*:refs/heads/*"
}
}
container("mcr.microsoft.com/dotnet/sdk:5.0") {
shellScript {
content = "./build.sh Test"
}
}
startOn {
gitPush {
enabled = true
}
}
}