Skip to content

Update main.yml

Update main.yml #12

Workflow file for this run

name: Build Executables
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
os: [macos-latest]
arch: [amd64, 386]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.4
- name: Install Homebrew
if: matrix.os == 'macos-latest'
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
- name: Install Chocolatey
if: matrix.os == 'windows-latest'
run: |
Set-ExecutionPolicy Bypass -Scope Process -Force; `
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; `
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
- name: Install GLFW
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libglfw3-dev
- name: Install GLFW
if: matrix.os == 'macos-latest'
run: brew install glfw
- name: Install GLFW
if: matrix.os == 'windows-latest'
run: |
choco install glfw
- name: Build
run: |
GOOS=$(echo ${{ matrix.os }})
GOARCH=${{ matrix.arch }}
OUTPUT_NAME=shimoExporter-${GOOS}-${GOARCH}
export CGO_ENABLED=1 && go mod init shimoExporter && go mod tidy && go build -o $OUTPUT_NAME ./app/main.go
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}-${{ matrix.arch }}
path: shimoExporter-${{ matrix.os }}-${{ matrix.arch}}