Skip to content
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
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1288,7 +1288,7 @@ steps:
commands:
- cd "/go/src/github.com/gravitational/teleport/build.assets/tooling"
- 'go run ./cmd/gh-trigger-workflow -owner ${DRONE_REPO_OWNER} -repo teleport.e
-tag-workflow -timeout 1h0m0s -workflow release-linux-arm64.yml -workflow-ref=${DRONE_BRANCH}
-tag-workflow -timeout 2h30m0s -workflow release-linux-arm64.yml -workflow-ref=${DRONE_BRANCH}
-input oss-teleport-repo=${DRONE_REPO} -input oss-teleport-ref=${DRONE_COMMIT}
-input "upload-artifacts=false" '
environment:
Expand Down Expand Up @@ -5237,7 +5237,7 @@ steps:
commands:
- cd "/go/src/github.com/gravitational/teleport/build.assets/tooling"
- 'go run ./cmd/gh-trigger-workflow -owner ${DRONE_REPO_OWNER} -repo teleport.e
-tag-workflow -timeout 1h0m0s -workflow release-linux-arm64.yml -workflow-ref=${DRONE_TAG}
-tag-workflow -timeout 2h30m0s -workflow release-linux-arm64.yml -workflow-ref=${DRONE_TAG}
-input oss-teleport-repo=${DRONE_REPO} -input oss-teleport-ref=${DRONE_TAG} -input
"upload-artifacts=true" '
environment:
Expand Down Expand Up @@ -19853,6 +19853,6 @@ image_pull_secrets:
- DOCKERHUB_CREDENTIALS
---
kind: signature
hmac: 8705ff7e7ec1dd823eef6b838b2973f22e82ed4fe06e6f591e683fb54145b203
hmac: 90c1594545bf8f5584087efbb08ee811a6e857e0ee4a52db010f02f63bf9881c

...
2 changes: 1 addition & 1 deletion dronegen/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func pushPipelines() []pipeline {
workflows: []ghaWorkflow{
{
name: "release-linux-arm64.yml",
timeout: 60 * time.Minute,
timeout: 150 * time.Minute,
slackOnError: true,
srcRefVar: "DRONE_COMMIT",
ref: "${DRONE_BRANCH}",
Expand Down
2 changes: 1 addition & 1 deletion dronegen/tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func tagPipelines() []pipeline {
name: "release-linux-arm64.yml",
srcRefVar: "DRONE_TAG",
ref: "${DRONE_TAG}",
timeout: 60 * time.Minute,
timeout: 150 * time.Minute,
shouldTagWorkflow: true,
inputs: map[string]string{"upload-artifacts": "true"},
},
Expand Down