Set java version to start Polypheny with #288
Workflow file for this run
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: Polypheny JDBC Driver CI | ||
on: [ push, pull_request ] | ||
jobs: | ||
build-polypheny: | ||
timeout-minutes: 15 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Checkout Polypheny | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: polypheny/Polypheny-DB | ||
ref: proto-without-grpc | ||
- name: Build Polypheny | ||
run: | | ||
./gradlew build -x test -x licensee | ||
- name: Build Polypheny | ||
run: | | ||
./gradlew build -x test -x licensee | ||
- name: Store Polypheny JAR | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: polypheny-jar | ||
path: dbms/build/libs/dbms-0.10.0-SNAPSHOT.jar | ||
build: | ||
needs: build-polypheny | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
java: [ 8, 11, 17, 21 ] | ||
os: [ ubuntu-latest, macos-latest ] | ||
include: | ||
- os: windows-latest | ||
java: 8 | ||
exclude: | ||
- os: macos-latest | ||
java: 8 | ||
timeout-minutes: 20 | ||
runs-on: ${{ matrix.os }} | ||
name: Java ${{ matrix.java }} @ ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: | | ||
17 | ||
${{ matrix.java }} | ||
- name: Load Polypheny JAR | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: polypheny-jar | ||
- name: Build & test with Gradle | ||
uses: polypheny/GitHub-Action-Run-Polypheny@dev | ||
with: | ||
cmd: ./gradlew build | ||
jar: dbms-0.10.0-SNAPSHOT.jar | ||
java: ${{ env.JAVA_HOME_17_X64 or env.JAVA_HOME_17_ARM64 }}/bin/java | ||
Check failure on line 70 in .github/workflows/ci.yml GitHub Actions / Polypheny JDBC Driver CIInvalid workflow file
|
||
test-stores: | ||
needs: build-polypheny | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
adapter: [ mongodb, hsqldb, monetdb, postgresql, file, cottontail, neo4j ] | ||
timeout-minutes: 20 | ||
runs-on: ubuntu-latest | ||
name: Test on ${{ matrix.adapter }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 17 | ||
- name: Load Polypheny JAR | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: polypheny-jar | ||
- name: Build with Gradle | ||
uses: polypheny/GitHub-Action-Run-Polypheny@dev | ||
with: | ||
cmd: ./gradlew build | ||
jar: dbms-0.10.0-SNAPSHOT.jar | ||
default-store: ${{ matrix.adapter }} |