forked from loafle/openapi-generator-original
* [kotlin-server][javalin6] Add Javalin 6 support Javalin 5 support was added in 13edc5d. Javalin 6 has been released, with some breaking changes. Let's add a new supportedLibrary to not break existing users of Javalin 5. https://javalin.io/migration-guide-javalin-5-to-6 * Fix Gradle config and don't include JVM 8 CI anymore (JVM 11 is the minimum for Javalin) * Update docs * Fix optional query parameter handling and turn into expected type
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: Samples Kotlin server (jdk21)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'samples/server/petstore/kotlin-server/javalin-6/**'
|
|
pull_request:
|
|
paths:
|
|
- 'samples/server/petstore/kotlin-server/javalin-6/**'
|
|
|
|
env:
|
|
GRADLE_VERSION: 8.8
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Kotlin server
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
- samples/server/petstore/kotlin-server/javalin-6
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 21
|
|
- name: Cache maven dependencies
|
|
uses: actions/cache@v4
|
|
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:
|
|
gradle-version: ${{ env.GRADLE_VERSION }}
|
|
build-root-directory: ${{ matrix.sample }}
|
|
arguments: wrapper
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: ./gradlew build -x test
|