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
4 changes: 2 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4205,7 +4205,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 2h30m0s -workflow release-mac-amd64.yaml -workflow-ref=${DRONE_TAG}
-tag-workflow -timeout 2h30m0s -workflow release-mac.yaml -workflow-ref=${DRONE_TAG}
-input oss-teleport-repo=${DRONE_REPO} -input oss-teleport-ref=${DRONE_TAG} -input
"build-packages=true" -input "release-artifacts=true" '
environment:
Expand Down Expand Up @@ -17106,6 +17106,6 @@ image_pull_secrets:
- DOCKERHUB_CREDENTIALS
---
kind: signature
hmac: 4ac203ede1252a20f61b5859471d03f65a4ab335d960a5c854bfa4b5d1ac223d
hmac: bcbaa90c991ef9730c11e1555ad687a896a3bde59cf8df4c296d019c0f4f51f5

...
4 changes: 3 additions & 1 deletion dronegen/mac_gha.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ import "time"
// * a package with the tsh binary.
// * a disk image (dmg) of Teleport Connect containing the signed tsh package.
// These build assets are signed and notarized.
// The tarballs are build for amd64, arm64 and universal. The packages and
// disk image are build for universal only.
func darwinTagPipelineGHA() pipeline {
bt := ghaBuildType{
buildType: buildType{os: "darwin", arch: "amd64"},
trigger: triggerTag,
pipelineName: "build-darwin-amd64",
workflows: []ghaWorkflow{
{
name: "release-mac-amd64.yaml",
name: "release-mac.yaml",
srcRefVar: "DRONE_TAG",
ref: "${DRONE_TAG}",
timeout: 150 * time.Minute,
Expand Down