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

Added workflow file for builds with macos #29148

Merged
merged 2 commits into from
Nov 25, 2021
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
73 changes: 73 additions & 0 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: build
nxei marked this conversation as resolved.
Show resolved Hide resolved

env:
GOPATH: /home/runner/work/gotest/gotest
GO111MODULE: off
REPO_PATH: src/gotest
MACOS_GOPATH: /Users/runner/work/gotest/gotest
GITHUB_TOKEN: ${{ github.token }}

on:
workflow_dispatch:
inputs:
id:
description: 'Run ID'
required: true
runner:
description: 'Github actions runner'
required: false
default: 'macos-latest'
path:
description: 'Directory where to run command'
required: false
default: ''
pr:
description: 'Pull request id'
required: false
default: ''
go_version:
description: 'Go version'
required: false
default: '1.17'
command:
description: 'Command to run'
required: true
default: ''
jobs:
build:
runs-on: ${{ github.event.inputs.runner }}
steps:
- name: ${{ format('Run ID {0}', github.event.inputs.id) }}
run: echo Run ID ${{github.event.inputs.id}}
- name: Set environment for macos
if: ${{ contains(github.event.inputs.runner, 'macos') }}
run: |
echo Changed GOPATH to ${{ env.MACOS_GOPATH }}
echo "GOPATH="${{ env.MACOS_GOPATH }} >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ github.event.inputs.go_version }}
- name: Install dependencies
run: go get -u github.com/magefile/mage
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ env.GITHUB_REF }}
path: ${{ env.REPO_PATH }}
- name: Checkout and merge PR
if: ${{ github.event.inputs.pr }}
run: |
set -x
cd ${{ env.GOPATH }}/${{ env.REPO_PATH }}
git config --global user.email "[email protected]"
git config --global user.name "user"
git fetch origin pull/${{ github.event.inputs.pr }}/head:${{ github.event.inputs.id }}
git checkout ${{ github.event.inputs.id }}
git checkout $GITHUB_REF_NAME
git merge --no-ff ${{ github.event.inputs.id }}
- name: Run command
run: |
set -x
cd ${{ env.GOPATH }}/${{ env.REPO_PATH }}/${{ github.event.inputs.path }}
${{ github.event.inputs.command }}