open-nomad/.release/ci.hcl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

239 lines
4.4 KiB
HCL
Raw Normal View History

2022-04-06 15:47:02 +00:00
schema = "1"
project "nomad" {
team = "nomad"
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
slack {
notification_channel = "C03B5EWFW01"
2022-04-06 15:47:02 +00:00
}
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
github {
organization = "hashicorp"
repository = "nomad"
2022-07-08 21:07:18 +00:00
release_branches = [
"main",
"release/**",
]
2022-04-06 15:47:02 +00:00
}
}
event "merge" {
2022-07-08 21:07:18 +00:00
// "entrypoint" to use if build is not run automatically // i.e. send "merge" complete signal to orchestrator to trigger build
2022-04-06 15:47:02 +00:00
}
event "build" {
depends = ["merge"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "build" {
organization = "hashicorp"
repository = "nomad"
workflow = "build"
}
}
event "upload-dev" {
depends = ["build"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "upload-dev" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "upload-dev"
}
notification {
on = "fail"
}
}
event "security-scan-binaries" {
depends = ["upload-dev"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "security-scan-binaries" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "security-scan-binaries"
config = "security-scan.hcl"
}
notification {
on = "fail"
}
}
event "notarize-darwin-amd64" {
depends = ["security-scan-binaries"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "notarize-darwin-amd64" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "notarize-darwin-amd64"
}
notification {
on = "fail"
}
}
event "notarize-darwin-arm64" {
depends = ["notarize-darwin-amd64"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "notarize-darwin-arm64" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "notarize-darwin-arm64"
}
notification {
on = "fail"
}
}
event "notarize-windows-386" {
depends = ["notarize-darwin-arm64"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "notarize-windows-386" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "notarize-windows-386"
}
notification {
on = "fail"
}
}
event "notarize-windows-amd64" {
depends = ["notarize-windows-386"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "notarize-windows-amd64" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "notarize-windows-amd64"
}
notification {
on = "fail"
}
}
event "sign" {
depends = ["notarize-windows-amd64"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "sign" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "sign"
}
notification {
on = "fail"
}
}
event "sign-linux-rpms" {
depends = ["sign"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "sign-linux-rpms" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "sign-linux-rpms"
}
notification {
on = "fail"
}
}
event "verify" {
depends = ["sign-linux-rpms"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "verify" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "verify"
}
notification {
on = "always"
}
}
2022-07-07 18:18:44 +00:00
event "fossa-scan" {
depends = ["verify"]
2022-07-08 21:07:18 +00:00
2022-07-07 18:18:44 +00:00
action "fossa-scan" {
organization = "hashicorp"
2022-07-08 21:07:18 +00:00
repository = "crt-workflows-common"
workflow = "fossa-scan"
2022-07-07 18:18:44 +00:00
}
}
2022-04-06 15:47:02 +00:00
## These are promotion and post-publish events
## they should be added to the end of the file after the verify event stanza.
event "trigger-staging" {
2022-07-08 21:07:18 +00:00
// This event is dispatched by the bob trigger-promotion command // and is required - do not delete.
2022-04-06 15:47:02 +00:00
}
event "promote-staging" {
depends = ["trigger-staging"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "promote-staging" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-staging"
config = "release-metadata.hcl"
2022-04-06 15:47:02 +00:00
}
notification {
on = "always"
}
}
event "trigger-production" {
2022-07-08 21:07:18 +00:00
// This event is dispatched by the bob trigger-promotion command // and is required - do not delete.
2022-04-06 15:47:02 +00:00
}
event "promote-production" {
depends = ["trigger-production"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "promote-production" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-production"
}
notification {
on = "always"
}
}
event "promote-production-packaging" {
depends = ["promote-production"]
2022-07-08 21:07:18 +00:00
2022-04-06 15:47:02 +00:00
action "promote-production-packaging" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-production-packaging"
}
notification {
on = "always"
}
}
event "post-publish-website" {
depends = ["promote-production-packaging"]
action "post-publish-website" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "post-publish-website"
}
notification {
on = "always"
}
}