Switching to Kotlin Multiplatform for JVM use #1926
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches-ignore: | |
- main | |
tags-ignore: | |
- '**' | |
pull_request: | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
jobs: | |
jvm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Configure JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 19 | |
- name: Test | |
run: ./gradlew build | |
build-docs: | |
runs-on: ubuntu-latest | |
if: github.repository == 'square/kotlinpoet' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 19 | |
# Unable to run dokka with single target multiplatform project and | |
# kotlin 1.9.0 | |
# https://github.com/Kotlin/dokka/issues/3038 | |
# - name: Prep docs | |
# run: ./gradlew dokkaHtml | |
# | |
# - name: Set up Python | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: 3.8 | |
# | |
# - name: Build mkdocs | |
# run: | | |
# pip3 install -r .github/workflows/mkdocs-requirements.txt | |
# mkdocs build |