Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Nomad
Commits
2f3d110c
Commit
2f3d110c
authored
2 years ago
by
Michele Degges
Browse files
Options
Download
Email Patches
Plain Diff
fix hcl formatting
parent
1c5d80cc
Branches unavailable
v1.4.3
v1.4.2
v1.4.1
v1.4.0
v1.4.0-rc.1
v1.4.0-beta.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.release/ci.hcl
+22
-8
.release/ci.hcl
with
22 additions
and
8 deletions
+22
-8
.release/ci.hcl
+
22
-
8
View file @
2f3d110c
...
...
@@ -2,12 +2,15 @@ schema = "1"
project
"nomad"
{
team
=
"nomad"
slack
{
notification_channel
=
"C03B5EWFW01"
}
github
{
organization
=
"hashicorp"
repository
=
"nomad"
release_branches
=
[
"main"
,
"release/1.0.x"
,
...
...
@@ -19,12 +22,12 @@ project "nomad" {
}
event
"merge"
{
// "entrypoint" to use if build is not run automatically
// i.e. send "merge" complete signal to orchestrator to trigger build
// "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"
...
...
@@ -34,6 +37,7 @@ event "build" {
event
"upload-dev"
{
depends
=
[
"build"
]
action
"upload-dev"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -47,6 +51,7 @@ event "upload-dev" {
event
"security-scan-binaries"
{
depends
=
[
"upload-dev"
]
action
"security-scan-binaries"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -61,6 +66,7 @@ event "security-scan-binaries" {
event
"notarize-darwin-amd64"
{
depends
=
[
"security-scan-binaries"
]
action
"notarize-darwin-amd64"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -74,6 +80,7 @@ event "notarize-darwin-amd64" {
event
"notarize-darwin-arm64"
{
depends
=
[
"notarize-darwin-amd64"
]
action
"notarize-darwin-arm64"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -87,6 +94,7 @@ event "notarize-darwin-arm64" {
event
"notarize-windows-386"
{
depends
=
[
"notarize-darwin-arm64"
]
action
"notarize-windows-386"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -100,6 +108,7 @@ event "notarize-windows-386" {
event
"notarize-windows-amd64"
{
depends
=
[
"notarize-windows-386"
]
action
"notarize-windows-amd64"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -113,6 +122,7 @@ event "notarize-windows-amd64" {
event
"sign"
{
depends
=
[
"notarize-windows-amd64"
]
action
"sign"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -126,6 +136,7 @@ event "sign" {
event
"sign-linux-rpms"
{
depends
=
[
"sign"
]
action
"sign-linux-rpms"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -139,6 +150,7 @@ event "sign-linux-rpms" {
event
"verify"
{
depends
=
[
"sign-linux-rpms"
]
action
"verify"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
@@ -152,10 +164,11 @@ event "verify" {
event
"fossa-scan"
{
depends
=
[
"verify"
]
action
"fossa-scan"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
workflow
=
"fossa-scan"
repository
=
"crt-workflows-common"
workflow
=
"fossa-scan"
}
}
...
...
@@ -163,12 +176,12 @@ event "fossa-scan" {
## 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.
// 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"
...
...
@@ -182,12 +195,12 @@ event "promote-staging" {
}
event
"trigger-production"
{
// This event is dispatched by the bob trigger-promotion command
// and is required - do not delete.
// 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"
...
...
@@ -201,6 +214,7 @@ event "promote-production" {
event
"promote-production-packaging"
{
depends
=
[
"promote-production"
]
action
"promote-production-packaging"
{
organization
=
"hashicorp"
repository
=
"crt-workflows-common"
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help