forked from kscience/kmath
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
# Based on https://github.com/touchlab/Stately/blob/main/.github/workflows/build.yml
|
|
|
|
name: build
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ macOS-latest, windows-latest ]
|
|
runs-on: ${{matrix.os}}
|
|
steps:
|
|
- name: Checkout the repo
|
|
uses: actions/checkout@v2
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
- name: Add msys to path
|
|
if: matrix.os == 'windows-latest'
|
|
run: SETX PATH "%PATH%;C:\msys64\mingw64\bin"
|
|
- name: Cache gradle
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.gradle/caches
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle.kts') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gradle-
|
|
- name: Cache konan
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.konan
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle.kts') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gradle-
|
|
- name: Build
|
|
run: ./gradlew build --no-daemon --stacktrace
|