CI: Set Go version #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: '1.22.x' | ||
check-latest: true | ||
- 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.time) }} | ||
run: make all | ||
build-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.22.x' | ||
check-latest: true | ||
- name: Print environment | ||
run: set | ||
- name: Build with make | ||
timeout-minutes: ${{ fromJSON(env.time) }} | ||
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: '1.22.x' | ||
check-latest: true | ||
- name: Print environment | ||
run: env | ||
- name: Build with make | ||
timeout-minutes: ${{ fromJSON(env.time) }} | ||
run: make bootstrapper |