Update kotlinx.serialization to v1.6.2 #426
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: | |
pull_request: | |
push: | |
paths-ignore: | |
- "doc/**" | |
- "documentation/**" | |
- "*.yml" | |
branches: | |
- "main" | |
- "release/*" | |
tags: | |
- "v**" | |
workflow_dispatch: | |
release: | |
types: [ published ] | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
linux-tests: | |
name: "./gradlew ${{ matrix.target }} @ ${{ matrix.os }}" | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
target: | |
- apiCheck | |
- jvmTest | |
- jsTest | |
- linuxX64Test | |
# - jsLegacyBrowserTest | |
# - jsLegacyNodeTest | |
# - jsLegacyTest | |
# - jsIrBrowserTest | |
# - jsIrNodeTest | |
uses: ./.github/workflows/gradle_task.yml | |
with: | |
runs-on: ${{ matrix.os }} | |
gradle-task: ${{ matrix.target }} --stacktrace | |
macos-tests: | |
name: "./gradlew ${{ matrix.target }} @ ${{ matrix.os }}" | |
strategy: | |
matrix: | |
os: [ macos-11 ] | |
target: | |
- iosSimulatorArm64Test | |
- iosX64Test | |
- macosArm64Test | |
- macosX64Test | |
- tvosSimulatorArm64Test | |
- tvosX64Test | |
- watchosSimulatorArm64Test | |
- watchosX64Test | |
uses: ./.github/workflows/gradle_task.yml | |
with: | |
runs-on: ${{ matrix.os }} | |
gradle-task: ${{ matrix.target }} --stacktrace | |
windows-tests: | |
name: "./gradlew ${{ matrix.target }} @ ${{ matrix.os }}" | |
strategy: | |
matrix: | |
os: [ windows-latest ] | |
target: | |
- mingwX64Test | |
uses: ./.github/workflows/gradle_task.yml | |
with: | |
runs-on: ${{ matrix.os }} | |
gradle-task: ${{ matrix.target }} --stacktrace | |
gradle-check: | |
name: "./gradlew check @ ${{ matrix.os }}" | |
needs: [ linux-tests, macos-tests, windows-tests ] | |
# Run 'check' task for each OS. | |
# To improve speed, only enable Kotlin/JVM (Kotlin/Native is particularly slow). | |
# The other targets are tested individually above. | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-11, windows-latest ] | |
uses: ./.github/workflows/gradle_task.yml | |
with: | |
runs-on: ${{ matrix.os }} | |
gradle-task: check --stacktrace -Pks3_enableKotlinNative=false -Pks3_enableKotlinJs=false | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 # Checkout the code. No need of tags and whole history. | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build docs | |
run: ./gradlew dokkatooGeneratePublicationHtml --no-configuration-cache --no-build-cache --rerun-tasks | |
- name: Deploy docs | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build/dokka/html/ |