update infra to use JDK 17 #1956
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Set up Python 3.8 | |
uses: actions/[email protected] | |
with: | |
python-version: 3.8 | |
- name: Install Python modules | |
run: | | |
python -m pip install --upgrade pip | |
if [ -f scripts/requirements.txt ]; then pip install -r scripts/requirements.txt; fi | |
- uses: actions/[email protected] | |
id: gradle-wrapper-cache | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradlewrapper-${{ hashFiles('gradle/wrapper/*') }} | |
restore-keys: ${{ runner.os }}-gradlewrapper- | |
- name: Cache Gradle packages | |
uses: actions/[email protected] | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Maven cache | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build plugin and publish Locally | |
run: | | |
./gradlew --info check publishToMavenLocal --warning-mode all | |
- name: Clone dgs-examples-java | |
uses: actions/checkout@v4 | |
with: | |
repository: Netflix/dgs-examples-java | |
path: build/examples/dgs-examples-java | |
- name: Clone dgs-examples-kotlin | |
uses: actions/checkout@v4 | |
with: | |
repository: Netflix/dgs-examples-kotlin | |
path: build/examples/dgs-examples-kotlin | |
- name: Build Examples | |
run: | | |
find /home/runner/.m2/repository/ -type f -name "*graphql-dgs-codegen-gradle*" | |
./scripts/test-examples.py -v -k --path=./build/examples |