Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bulid: add CRT pipeline #19

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 131 additions & 0 deletions .release/ci.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
schema = "1"

project "http-echo" {
// the team key is not used by CRT currently
team = "team-consul"
slack {
notification_channel = "C0253EQ5B40"
}
github {
organization = "hashicorp"
repository = "http-echo"
// An allow-list of branch names where artifacts are built. Note that wildcards are accepted!
// Artifacts built from these branches will be processed through CRT and get into a
// "release ready" state.
release_branches = [
"main",
"release/**"
]
}
}

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 = "http-echo"
workflow = "build"
}
}

// Read more about what the `prepare` workflow does here:
// https://hashicorp.atlassian.net/wiki/spaces/RELENG/pages/2489712686/Dec+7th+2022+-+Introducing+the+new+Prepare+workflow
event "prepare" {
depends = ["build"]

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

notification {
on = "fail"
}
}

## 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" {
// This event is dispatched by the bob trigger-promotion command
// and is required - do not delete.
}

event "promote-staging" {
depends = ["trigger-staging"]
action "promote-staging" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-staging"
config = "release-metadata.hcl"
}

notification {
on = "always"
}
}

event "promote-staging-docker" {
depends = ["promote-staging"]
action "promote-staging-docker" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-staging-docker"
}

notification {
on = "always"
}
}

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

event "promote-production" {
depends = ["trigger-production"]
action "promote-production" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-production"
}

notification {
on = "always"
}
}

event "promote-production-docker" {
depends = ["promote-production"]
action "promote-production-docker" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-production-docker"
}

notification {
on = "always"
}
}


event "bump-version-patch" {
depends = ["promote-production-docker"]
action "bump-version" {
organization = "HashiCorp-RelEng-Dev"
repository = "crt-workflows-common"
workflow = "bump-version"
}

notification {
on = "fail"
}
}
5 changes: 5 additions & 0 deletions .release/release.metadata.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
url_docker_registry_dockerhub = "https://hub.docker.com/r/hashicorp/http-echo"
url_source_repository = "https://github/hashicorp/http-echo"
url_project_website = "https://github/hashicorp/http-echo"
url_license = "https://github.com/hashicorp/http-echo/blob/main/LICENSE"
url_release_notes = "https://github.com/hashicorp/http-echo/releases"
13 changes: 13 additions & 0 deletions .release/security-scan.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
container {
dependencies = true
alpine_secdb = true
secrets = true
}

binary {
secrets = true
go_modules = true
osv = true
oss_index = false
nvd = false
}
Loading