Skip to content

Commit

Permalink
[CI only] Prepare workflow rollout (#15600)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeggies authored Feb 16, 2023
1 parent 38931c9 commit ebe4b51
Showing 1 changed file with 5 additions and 133 deletions.
138 changes: 5 additions & 133 deletions .release/ci.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -18,159 +18,31 @@ project "nomad" {
}
}

event "merge" {
// "entrypoint" to use if build is not run automatically // i.e. send "merge" complete signal to orchestrator to trigger build
}

event "build" {
depends = ["merge"]

action "build" {
organization = "hashicorp"
repository = "nomad"
workflow = "build"
}
}

event "upload-dev" {
event "prepare" {
depends = ["build"]

action "upload-dev" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "upload-dev"
}

notification {
on = "fail"
}
}

event "security-scan-binaries" {
depends = ["upload-dev"]

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"]

action "notarize-darwin-amd64" {
action "prepare" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "notarize-darwin-amd64"
workflow = "prepare"
depends = ["build"]
}

notification {
on = "fail"
}
}

event "notarize-darwin-arm64" {
depends = ["notarize-darwin-amd64"]

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"]

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"]

action "notarize-windows-amd64" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "notarize-windows-amd64"
}

notification {
on = "fail"
}
}

event "sign" {
depends = ["notarize-windows-amd64"]

action "sign" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "sign"
}

notification {
on = "fail"
}
}

event "sign-linux-rpms" {
depends = ["sign"]

action "sign-linux-rpms" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "sign-linux-rpms"
}

notification {
on = "fail"
}
}

event "verify" {
depends = ["sign-linux-rpms"]

action "verify" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "verify"
}

notification {
on = "always"
}
}

event "fossa-scan" {
depends = ["verify"]

action "fossa-scan" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "fossa-scan"
}
}

## These are promotion and post-publish events
## they should be added to the end of the file after the verify event block.
## they should be added to the end of the file after the prepare event stanza.

event "trigger-staging" {
// This event is dispatched by the bob trigger-promotion command // and is required - do not delete.
Expand Down

0 comments on commit ebe4b51

Please sign in to comment.