Migrate OriginatingElementsHolder and Taggable from JVM to common #2872
Workflow file for this run
This file contains hidden or 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: | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Configure JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: Full build | |
| if: matrix.os == 'ubuntu-latest' | |
| run: ./gradlew build | |
| - name: KotlinPoet check | |
| if: "matrix.os != 'ubuntu-latest'" | |
| run: ./gradlew :kotlinpoet:check | |
| build-docs: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'square/kotlinpoet' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Configure JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: Prep docs | |
| run: ./gradlew dokkaHtml | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13 | |
| - name: Build mkdocs | |
| run: | | |
| pip3 install -r .github/workflows/mkdocs-requirements.txt | |
| mkdocs build |