- Essentially this is a workflow acting as a placeholder for doing further native development as it's easier to have on in a main branch. - Should eventually grow into one user can run manually for ffm development if it's required to build something on a gh platform.
35 lines
710 B
YAML
35 lines
710 B
YAML
name: CI Native
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- nickname: linux jdk17
|
|
java: 17
|
|
os: ubuntu-latest
|
|
- nickname: macos jdk17
|
|
java: 17
|
|
os: macos-latest
|
|
- nickname: windows jdk17
|
|
java: 17
|
|
os: windows-latest
|
|
name: CI Build ${{ matrix.nickname }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: adopt
|
|
java-version: |
|
|
22
|
|
17
|
|
cache: gradle
|
|
- name: Build
|
|
run: ./gradlew build
|
|
|