Allow missing fields with implicit casting during streaming write #154
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 Spark Master" | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: "DSM: Scala ${{ matrix.scala }}, Shard ${{ matrix.shard }}" | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
# These Scala versions must match those in the build.sbt | |
scala: [2.13.13] | |
# Important: This list of shards must be [0..NUM_SHARDS - 1] | |
shard: [0, 1, 2] | |
env: | |
SCALA_VERSION: ${{ matrix.scala }} | |
# Important: This must be the same as the length of shards in matrix | |
NUM_SHARDS: 3 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: technote-space/get-diff-action@v4 | |
id: git-diff | |
with: | |
PATTERNS: | | |
** | |
.github/workflows/** | |
!kernel/** | |
!connectors/** | |
- name: install java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "17" | |
- name: Cache Scala, SBT | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.sbt | |
~/.ivy2 | |
~/.cache/coursier | |
!~/.cache/coursier/v1/https/repository.apache.org/content/groups/snapshots | |
# Change the key if dependencies are changed. For each key, GitHub Actions will cache the | |
# the above directories when we use the key for the first time. After that, each run will | |
# just use the cache. The cache is immutable so we need to use a new key when trying to | |
# cache new stuff. | |
key: delta-sbt-cache-spark-master-scala${{ matrix.scala }} | |
- name: Install Job dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl git | |
sudo apt install libedit-dev | |
if: steps.git-diff.outputs.diff | |
- name: Run Spark Master tests | |
# when changing TEST_PARALLELISM_COUNT make sure to also change it in spark_test.yaml | |
run: | | |
TEST_PARALLELISM_COUNT=4 SHARD_ID=${{matrix.shard}} build/sbt -DsparkVersion=master "++ ${{ matrix.scala }}" clean spark/test | |
TEST_PARALLELISM_COUNT=4 build/sbt -DsparkVersion=master "++ ${{ matrix.scala }}" clean connectServer/test | |
TEST_PARALLELISM_COUNT=4 build/sbt -DsparkVersion=master "++ ${{ matrix.scala }}" clean connectServer/assembly connectClient/test | |
if: steps.git-diff.outputs.diff |