forked from loafle/openapi-generator-original
* Update Java version in Github actions * Generate samples * [java] Upgrade Gradle wrapper to 8.7 * Generate samples * [Java] Add resttemplate-jakarta to CI * Upgrade CI machines to ubuntu-2204:2024.04.4 which use Java 21 * Change CI machines to ubuntu-2204:2024.01.1 which use Java 17 * Change CI machines to ubuntu-2004:2024.01.1 * [ruby] Update Gemfile.locks * Use gradle wrapper for samples-java-client-jdk17
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
name: Gradle tests (Java samples)
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'samples/client/petstore/java/**'
|
|
- 'samples/openapi3/client/petstore/java/**'
|
|
pull_request:
|
|
paths:
|
|
- 'samples/client/petstore/java/**'
|
|
- 'samples/openapi3/client/petstore/java/**'
|
|
env:
|
|
GRADLE_VERSION: 8.7
|
|
|
|
jobs:
|
|
build:
|
|
name: Gradle tests
|
|
runs-on: ubuntu-latest
|
|
container: gradle:jdk11
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
sample:
|
|
- samples/openapi3/client/extensions/x-auth-id-alias/java/jersey2-java8
|
|
- samples/openapi3/client/petstore/java/jersey2-java8-special-characters
|
|
- samples/openapi3/client/petstore/java/jersey2-java8
|
|
- samples/client/petstore/java/jersey2-java8-localdatetime
|
|
- samples/client/petstore/java/jersey2-java8
|
|
- samples/client/petstore/java/okhttp-gson
|
|
- samples/client/petstore/java/okhttp-gson-group-parameter
|
|
- samples/client/petstore/java/webclient-swagger2
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 11
|
|
# Cache Gradle Dependencies
|
|
- name: Setup Gradle Dependencies Cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.gradle/caches
|
|
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
|
|
|
|
# Cache Gradle Wrapper
|
|
- name: Setup Gradle Wrapper Cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.gradle/wrapper
|
|
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
|
|
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: /bin/sh gradlew build -x test
|