Skip to content

Makefile: macOS uname only supports short flags #6

Makefile: macOS uname only supports short flags

Makefile: macOS uname only supports short flags #6

Workflow file for this run

name: master
on: [push]
env:
timeout: 10
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install build requirements
run: |
sudo apt-get update
sudo apt-get install build-essential rpm python3 -y
- name: Build with make
timeout-minutes: ${{ fromJSON(env.timeout) }}
run: make build
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Print environment
run: cmd.exe /K set
- name: Print environment
run: gci env:* | sort-object name
- name: Build with make
timeout-minutes: ${{ fromJSON(env.timeout) }}
run: make.exe bootstrapper
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Print environment
run: env
- name: Build with make
timeout-minutes: ${{ fromJSON(env.timeout) }}
run: make bootstrapper