Introduce reserved-properties setting; reserve "polaris." by default … #534
This file contains hidden or 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
# | |
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, | |
# software distributed under the License is distributed on an | |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
# KIND, either express or implied. See the License for the | |
# specific language governing permissions and limitations | |
# under the License. | |
# | |
name: Spark Client Regression Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
regtest: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Fix permissions | |
run: mkdir -p regtests/output && chmod 777 regtests/output && chmod 777 regtests/t_*/ref/* | |
- name: Project build without testing | |
run: ./gradlew assemble | |
- name: Image build | |
run: | | |
./gradlew \ | |
:polaris-quarkus-server:assemble \ | |
:polaris-quarkus-server:quarkusAppPartsBuild --rerun \ | |
-Dquarkus.container-image.build=true | |
# NOTE: the regression test runs with spark 3.5.5 and scala 2.12 in Java 17. We also have integration | |
# tests runs with the existing gradle.yml, which only runs on Java 21. Since spark Java compatibility | |
# for 3.5 is 8, 11, and 17, we should run spark client with those compatible java versions. | |
# TODO: add separate spark client CI and run with Java 8, 11 and 17. | |
- name: Regression Test | |
run: | | |
docker compose -f plugins/spark/v3.5/regtests/docker-compose.yml up --build --exit-code-from regtest |