-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into compatible-dropwizard-metrics
- Loading branch information
Showing
2,703 changed files
with
173,878 additions
and
203,125 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
84 changes: 84 additions & 0 deletions
84
.github/workflows/pinot_multi_stage_query_engine_compatibility_tests.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# | ||
# 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: Pinot Multi-Stage Query Engine Compatibility Regression Test | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
oldCommit: | ||
description: "Git hash (or tag) for old commit. (required)" | ||
required: true | ||
newCommit: | ||
description: "Git hash (or tag) for new commit. (required)" | ||
required: true | ||
|
||
jobs: | ||
compatibility-verifier: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
test_suite: [ "compatibility-verifier/multi-stage-query-engine-test-suite" ] | ||
name: Pinot Multi-Stage Query Engine Compatibility Regression Testing against ${{ github.event.inputs.oldCommit }} and ${{ github.event.inputs.newCommit }} on ${{ matrix.test_suite }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 11 | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: v16.15.0 | ||
cache: 'npm' | ||
cache-dependency-path: pinot-controller/src/main/resources/package-lock.json | ||
- name: Install npm | ||
run: | | ||
npm install -g npm@8.5.5 | ||
npm --version | ||
- name: Pinot Multi-Stage Query Engine Compatibility Regression Testing | ||
if : ${{github.event_name == 'workflow_dispatch'}} | ||
env: | ||
OLD_COMMIT: ${{ github.event.inputs.oldCommit }} | ||
NEW_COMMIT: ${{ github.event.inputs.newCommit }} | ||
WORKING_DIR: /tmp/multi-stage-compatibility-verifier | ||
TEST_SUITE: ${{ matrix.test_suite }} | ||
MAVEN_OPTS: > | ||
-Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 | ||
-Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false | ||
-XX:+IgnoreUnrecognizedVMOptions | ||
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED | ||
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED | ||
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED | ||
--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED | ||
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED | ||
run: .github/workflows/scripts/.pinot_compatibility_verifier.sh | ||
- name: Archive artifacts into zip | ||
if: always() | ||
run: | | ||
zip -1 -r artifacts.zip /tmp/multi-stage-compatibility-verifier/* | ||
- uses: actions/upload-artifact@v4 | ||
name: Store multi-stage compatibility verifier work directory | ||
if: always() | ||
with: | ||
## TODO: currently matrix.test_suite cannot be used as part of name due to invalid path character. | ||
name: multi_stage_compatibility_verifier_work_dir | ||
retention-days: 3 | ||
path: artifacts.zip |
Oops, something went wrong.