diff --git a/.drone.yml b/.drone.yml index 69894439b0026..3d30133b0d8c5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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: @@ -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: @@ -19853,6 +19853,6 @@ image_pull_secrets: - DOCKERHUB_CREDENTIALS --- kind: signature -hmac: 8705ff7e7ec1dd823eef6b838b2973f22e82ed4fe06e6f591e683fb54145b203 +hmac: 90c1594545bf8f5584087efbb08ee811a6e857e0ee4a52db010f02f63bf9881c ... diff --git a/dronegen/push.go b/dronegen/push.go index ffee5f5681b00..50f0022f5d439 100644 --- a/dronegen/push.go +++ b/dronegen/push.go @@ -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}", diff --git a/dronegen/tag.go b/dronegen/tag.go index 847ebf23298ff..7cf83ecb2bf3c 100644 --- a/dronegen/tag.go +++ b/dronegen/tag.go @@ -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"}, },