[Spark] Fix metadata cleanup by retaining a checkpoint before the cutoff window. Alternative fix #8086
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" | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: "DK" | |
runs-on: ubuntu-20.04 | |
env: | |
SCALA_VERSION: 2.12.18 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "8" | |
- name: Run tests | |
run: | | |
python run-tests.py --group kernel --coverage | |
- name: Run integration tests | |
run: | | |
cd kernel/examples && python run-kernel-examples.py --use-local |