Skip to content

CI: improve the build script #2

CI: improve the build script

CI: improve the build script #2

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'gradle'
- name: Build
run: make compile-all
- uses: actions/upload-artifact@v4
with:
name: launcher-${{ matrix.os }}
path: |
build/launcher*
build/bin