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

(feat) build and publish m1 binary #133

Merged
merged 2 commits into from
Jun 30, 2022
Merged
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
30 changes: 30 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,36 @@ trigger:
- refs/tags/*

---
kind: pipeline
type: vm
name: build and publish M1 binaries

node:
cluster: mac2

pool:
use: osx-anka-m1

steps:
- name: build mac arm64 binary
commands:
- brew install golang
- CGO_ENABLED=1 go build -o drone-runner-aws-darwin-arm64
- name: release
image: plugins/github-release
settings:
files:
- drone-runner-aws-darwin-arm64
api_key:
from_secret: github_token

depends_on:
- default
trigger:
ref:
- refs/tags/*
---

kind: pipeline
type: docker
name: manifest
Expand Down