Skip to content

Commit

Permalink
Update to use CRT prepare workflow (#534)
Browse files Browse the repository at this point in the history
This update, moves vault-k8s to use the prepare workflow. This workflow encapsulates several previous workflows, running jobs in parallel to reduce the artifact processing time. See https://hashicorp.atlassian.net/wiki/spaces/RELENG/pages/2489712686/Dec+7th+2022+-+Introducing+the+new+Prepare+workflow for more info.
  • Loading branch information
sarahethompson authored Oct 23, 2023
1 parent f8b4ce9 commit d3a0e58
Showing 1 changed file with 5 additions and 59 deletions.
64 changes: 5 additions & 59 deletions .release/ci.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -29,67 +29,13 @@ event "build" {
}
}

event "upload-dev" {
event "prepare" {
depends = ["build"]
action "upload-dev" {
action "prepare" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "upload-dev"
depends = ["build"]
}

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 "security-scan-containers" {
depends = ["security-scan-binaries"]
action "security-scan-containers" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "security-scan-containers"
config = "security-scan.hcl"
}

notification {
on = "fail"
}
}

event "sign" {
depends = ["security-scan-containers"]
action "sign" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "sign"
}

notification {
on = "fail"
}
}

event "verify" {
depends = ["sign"]
action "verify" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "verify"
repository = "crt-workflows-common"
workflow = "prepare"
depends = ["build"]
}

notification {
Expand Down

0 comments on commit d3a0e58

Please sign in to comment.