Skip to content

Update Kotlin dependencies and remove macOS support for Rocksdb at th… #5

Update Kotlin dependencies and remove macOS support for Rocksdb at th…

Update Kotlin dependencies and remove macOS support for Rocksdb at th… #5

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os:
- macos-latest
#- ubuntu-latest
#- windows-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Cache Kotlin Konan
id: cache-kotlin-konan
uses: actions/cache@v3
with:
path: |
~/.konan/**/*
key: kotlin-konan-${{ runner.os }}
- uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true
arguments: build --stacktrace