forked from loafle/openapi-generator-original
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96 lines
4.3 KiB
YAML
96 lines
4.3 KiB
YAML
name: Samples Kotlin client
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'samples/client/petstore/kotlin*/**'
|
|
- 'samples/client/others/kotlin-jvm-okhttp-parameter-tests/**'
|
|
- samples/client/others/kotlin-integer-enum/**
|
|
pull_request:
|
|
paths:
|
|
- 'samples/client/petstore/kotlin*/**'
|
|
- 'samples/client/others/kotlin-jvm-okhttp-parameter-tests/**'
|
|
- samples/client/others/kotlin-integer-enum/**
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Kotlin client
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
# client
|
|
- samples/client/petstore/kotlin
|
|
- samples/client/petstore/kotlin-explicit
|
|
- samples/client/petstore/kotlin-gson
|
|
- samples/client/petstore/kotlin-jackson
|
|
- samples/client/petstore/kotlin-model-prefix-type-mappings
|
|
# needs Android configured
|
|
#- samples/client/petstore/kotlin-json-request-string
|
|
- samples/client/petstore/kotlin-jvm-okhttp4-coroutines
|
|
- samples/client/petstore/kotlin-moshi-codegen
|
|
- samples/client/petstore/kotlin-multiplatform
|
|
- samples/client/petstore/kotlin-multiplatform-kotlinx-datetime
|
|
- samples/client/petstore/kotlin-multiplatform-allOf-discriminator
|
|
- samples/client/petstore/kotlin-nonpublic
|
|
- samples/client/petstore/kotlin-nullable
|
|
- samples/client/petstore/kotlin-retrofit2
|
|
- samples/client/petstore/kotlin-retrofit2-kotlinx_serialization
|
|
- samples/client/petstore/kotlin-retrofit2-jackson
|
|
- samples/client/petstore/kotlin-retrofit2-rx3
|
|
- samples/client/petstore/kotlin-string
|
|
- samples/client/petstore/kotlin-threetenbp
|
|
- samples/client/petstore/kotlin-kotlinx-datetime
|
|
- samples/client/petstore/kotlin-uppercase-enum
|
|
- samples/client/petstore/kotlin-array-integer-enum
|
|
- samples/client/petstore/kotlin-default-values-jvm-okhttp4
|
|
- samples/client/petstore/kotlin-default-values-jvm-retrofit2
|
|
- samples/client/petstore/kotlin-default-values-multiplatform
|
|
- samples/client/petstore/kotlin-array-simple-string-jvm-okhttp4
|
|
- samples/client/petstore/kotlin-array-simple-string-multiplatform
|
|
- samples/client/petstore/kotlin-bigdecimal-default-multiplatform
|
|
- samples/client/petstore/kotlin-bigdecimal-default-okhttp4
|
|
- samples/client/petstore/kotlin-jvm-jackson
|
|
- samples/client/petstore/kotlin-jvm-ktor-jackson
|
|
- samples/client/petstore/kotlin-jvm-ktor-gson
|
|
- samples/client/petstore/kotlin-jvm-ktor-kotlinx_serialization
|
|
- samples/client/petstore/kotlin-jvm-vertx-gson
|
|
- samples/client/petstore/kotlin-jvm-vertx-jackson
|
|
- samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines
|
|
- samples/client/petstore/kotlin-jvm-vertx-moshi
|
|
- samples/client/petstore/kotlin-jvm-spring-2-webclient
|
|
- samples/client/petstore/kotlin-jvm-spring-3-webclient
|
|
- samples/client/echo_api/kotlin-jvm-spring-3-webclient
|
|
- samples/client/petstore/kotlin-jvm-spring-3-restclient
|
|
- samples/client/echo_api/kotlin-jvm-spring-3-restclient
|
|
- samples/client/petstore/kotlin-name-parameter-mappings
|
|
- samples/client/others/kotlin-jvm-okhttp-parameter-tests
|
|
- samples/client/others/kotlin-jvm-okhttp-path-comments
|
|
- samples/client/others/kotlin-integer-enum
|
|
- samples/client/petstore/kotlin-allOf-discriminator-kotlinx-serialization
|
|
- samples/client/others/kotlin-oneOf-discriminator-kotlinx-serialization
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-java@v5
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 11
|
|
cache: gradle
|
|
- name: Cache maven dependencies
|
|
uses: actions/cache@v5
|
|
env:
|
|
cache-name: maven-repository
|
|
with:
|
|
path: |
|
|
~/.gradle
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
|
- name: Install Gradle wrapper
|
|
uses: eskatos/gradle-command-action@v3
|
|
with:
|
|
build-root-directory: ${{ matrix.sample }}
|
|
arguments: wrapper
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: ./gradlew build -x test
|