-
Notifications
You must be signed in to change notification settings - Fork 307
build: Add basic CI test pipelines #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| # 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: Prepare Builder | ||
| description: 'Prepare Build Environment' | ||
| inputs: | ||
| rust-version: | ||
| description: 'version of rust to install (e.g. nightly)' | ||
| required: true | ||
| default: 'nightly' | ||
| jdk-version: | ||
| description: 'jdk version to install (e.g., 17)' | ||
| required: true | ||
| default: '17' | ||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Install Build Dependencies | ||
| shell: bash | ||
| run: | | ||
| apt-get update | ||
| apt-get install -y openjdk-${{inputs.jdk-version}}-jdk protobuf-compiler | ||
| - name: Setup Rust toolchain | ||
| shell: bash | ||
| # rustfmt is needed for the substrait build script | ||
| run: | | ||
| echo "Installing ${{inputs.rust-version}}" | ||
| rustup toolchain install ${{inputs.rust-version}} | ||
| rustup default ${{inputs.rust-version}} | ||
| rustup component add rustfmt clippy |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| # 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: PR Build | ||
|
|
||
| concurrency: | ||
| group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | ||
| cancel-in-progress: true | ||
|
|
||
| on: | ||
| push: | ||
| paths-ignore: | ||
| - "doc/**" | ||
| - "**.md" | ||
| pull_request: | ||
| paths-ignore: | ||
| - "doc/**" | ||
| - "**.md" | ||
| # manual trigger | ||
| # https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow | ||
| workflow_dispatch: | ||
|
|
||
| env: | ||
| JAVA_VERSION: 17 | ||
|
|
||
| jobs: | ||
| linux-rust-test: | ||
| name: Rust test (amd64) | ||
| runs-on: ubuntu-latest | ||
| container: | ||
| image: amd64/rust | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Setup Rust & Java toolchain | ||
| uses: ./.github/actions/setup-builder | ||
| with: | ||
| rust-version: nightly | ||
| jdk-version: ${{env.JAVA_VERSION}} | ||
|
|
||
| - name: Check cargo fmt | ||
| run: | | ||
| cd core | ||
| cargo fmt --all -- --check --color=never | ||
|
|
||
| - name: Check cargo clippy | ||
| run: | | ||
| cd core | ||
| cargo clippy --color=never -- -D warnings | ||
|
|
||
| - name: Check compilation | ||
| run: | | ||
| cd core | ||
| cargo check --benches | ||
|
|
||
| - name: Setup JAVA_HOME | ||
| run: | | ||
| echo "JAVA_HOME=/usr/lib/jvm/java-${{env.JAVA_VERSION}}-openjdk-amd64" >> $GITHUB_ENV | ||
|
|
||
| - name: Cache Maven dependencies | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: ~/.m2/repository | ||
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-maven- | ||
|
|
||
| - name: Build common module (pre-requisite for Rust tests) | ||
| run: | | ||
| cd common | ||
| ../mvnw clean compile -DskipTests | ||
|
|
||
| - name: Run cargo test | ||
| run: | | ||
| cd core | ||
| # This is required to run some JNI related tests on the Rust side | ||
| RUST_BACKTRACE=1 LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$JAVA_HOME/lib:$JAVA_HOME/lib/server cargo test | ||
|
|
||
| linux-java-test: | ||
| name: Java test (amd64) | ||
| runs-on: ubuntu-latest | ||
| container: | ||
| image: amd64/rust | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Setup Rust & Java toolchain | ||
| uses: ./.github/actions/setup-builder | ||
| with: | ||
| rust-version: nightly | ||
| jdk-version: ${{env.JAVA_VERSION}} | ||
|
|
||
| - name: Run cargo build | ||
| run: | | ||
| cd core | ||
| cargo build | ||
|
|
||
| - name: Setup JAVA_HOME | ||
| run: | | ||
| echo "JAVA_HOME=/usr/lib/jvm/java-${{env.JAVA_VERSION}}-openjdk-amd64" >> $GITHUB_ENV | ||
|
|
||
| - name: Cache Maven dependencies | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: ~/.m2/repository | ||
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-maven- | ||
|
|
||
| - name: Run Maven compile | ||
| run: | | ||
| ./mvnw compile test-compile scalafix:scalafix -Psemanticdb | ||
|
|
||
| - name: Run tests | ||
| run: | | ||
| SPARK_HOME=`pwd` ./mvnw clean install | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -651,6 +651,7 @@ mod tests { | |
| /// See [`object_panic_exception`] for a test which involves generating a panic and verifying | ||
| /// that the resulting stack trace includes the offending call. | ||
| #[test] | ||
| #[ignore] | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the golden file for this test is not added yet, so ignore for now |
||
| pub fn stacktrace_string() { | ||
| // Setup: Start with a backtrace that includes all of the expected scenarios, including | ||
| // cases where the file and location are not provided as part of the backtrace capture | ||
|
|
||
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -297,7 +297,7 @@ class CometTPCDSV1_4_PlanStabilitySuite extends CometPlanStabilitySuite { | |
| new File(baseResourcePath, "approved-plans-v1_4").getAbsolutePath | ||
|
|
||
| tpcdsQueries.foreach { q => | ||
| test(s"check simplified (tpcds-v1.4/$q)") { | ||
| ignore(s"check simplified (tpcds-v1.4/$q)") { | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. depends on #10 |
||
| testQuery("tpcds", q) | ||
| } | ||
| } | ||
|
|
@@ -308,7 +308,7 @@ class CometTPCDSV2_7_PlanStabilitySuite extends CometPlanStabilitySuite { | |
| new File(baseResourcePath, "approved-plans-v2_7").getAbsolutePath | ||
|
|
||
| tpcdsQueriesV2_7_0.foreach { q => | ||
| test(s"check simplified (tpcds-v2.7.0/$q)") { | ||
| ignore(s"check simplified (tpcds-v2.7.0/$q)") { | ||
| testQuery("tpcds-v2.7.0", q) | ||
| } | ||
| } | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, we use
./mvnw verifyin Makefile, do we need to do that?Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we need
BOSON_CONF_DIR?Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
installcoversverify: https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html#a-build-lifecycle-is-made-up-of-phasesCOMET_CONF_DIRis optional and by default, Rust test outputs are directed to stdout.