[INFRA] [DO NOT MERGE] Test publishing against Spark 4 #3900
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: "Delta Kernel Tests" | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
env: | |
SCALA_VERSION: 2.13.13 | |
steps: | |
- uses: actions/checkout@v3 | |
# Install JDK 8 | |
- name: install java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "8" | |
# Run integration tests with JDK 8, as they have no Spark dependency | |
- name: Run integration tests (JDK 8) | |
run: | | |
cd kernel/examples && python run-kernel-examples.py --use-local | |
# Install JDK 17 | |
- name: install java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "17" | |
# Run unit tests with JDK 17. These unit tests depend on Spark, and Spark 4.0+ is JDK 17. | |
- name: Run unit tests (JDK 17) | |
run: | | |
python run-tests.py --group kernel --coverage |