Skip to content

Update plugin org.jetbrains.kotlin.multiplatform to v1.9.25 #181

Update plugin org.jetbrains.kotlin.multiplatform to v1.9.25

Update plugin org.jetbrains.kotlin.multiplatform to v1.9.25 #181

Workflow file for this run

name: Kotlin LibUI Build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Install JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Install GTK
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y libgtk-3-dev
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --stacktrace