Add native ci workflow

- 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.
This commit is contained in:
Janne Valkealahti
2024-09-14 16:20:12 +01:00
parent 8f0a736a13
commit 63d91d7ec8

34
.github/workflows/ci-native.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
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