Skip to content

[RELEASE] v0.0.21 released, prepare for next development iteration #886

[RELEASE] v0.0.21 released, prepare for next development iteration

[RELEASE] v0.0.21 released, prepare for next development iteration #886

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: 1.25.10
jobs:
build-all:
name: Build all (from Linux)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Free up disk space
uses: ./.github/actions/free-disk-space
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Setup Java 8
uses: actions/setup-java@v5
with:
java-version: '8'
distribution: 'temurin'
- name: Go Test
run: make test-go
- name: Maven Version (Check for Profile Selection debugging)
run: mvn -version
- name: Build
run: make build-all
build:
name: Build ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Setup Java 11
# macos-latest does not support Java 8
uses: actions/setup-java@v5
with:
java-version: '11'
distribution: 'temurin'
- name: Maven Version (Check for Profile Selection debugging)
run: mvn -version
- name: Build and test for the current platform (${{ matrix.os }})
run: make build-current-platform