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:
34
.github/workflows/ci-native.yml
vendored
Normal file
34
.github/workflows/ci-native.yml
vendored
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user