Skip to content

Commit

Permalink
build: Add spark-4.0 profile and shims
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuyukitanimura committed May 11, 2024
1 parent 65628fb commit 328705f
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,18 @@ jobs:
- if: matrix.test-target == 'rust'
name: Rust test steps
uses: ./.github/actions/rust-test
- if: matrix.test-target == 'java'
name: Clone Spark
uses: actions/checkout@v4
with:
repository: "apache/spark"
- if: matrix.test-target == 'java'
name: Install Spark
shell: bash
run: |
pushd apache-spark
build/mvn install -Phive -Phadoop-cloud -DskipTests
popd
- if: matrix.test-target == 'java'
name: Java test steps
uses: ./.github/actions/java-test
Expand Down Expand Up @@ -223,6 +235,18 @@ jobs:
- if: matrix.test-target == 'rust'
name: Rust test steps
uses: ./.github/actions/rust-test
- if: matrix.test-target == 'java'
name: Clone Spark
uses: actions/checkout@v4
with:
repository: "apache/spark"
- if: matrix.test-target == 'java'
name: Install Spark
shell: bash
run: |
pushd apache-spark
build/mvn install -Phive -Phadoop-cloud -DskipTests
popd
- if: matrix.test-target == 'java'
name: Java test steps
uses: ./.github/actions/java-test
Expand Down Expand Up @@ -258,6 +282,18 @@ jobs:
- if: matrix.test-target == 'rust'
name: Rust test steps
uses: ./.github/actions/rust-test
- if: matrix.test-target == 'java'
name: Clone Spark
uses: actions/checkout@v4
with:
repository: "apache/spark"
- if: matrix.test-target == 'java'
name: Install Spark
shell: bash
run: |
pushd apache-spark
build/mvn install -Phive -Phadoop-cloud -DskipTests
popd
- if: matrix.test-target == 'java'
name: Java test steps
uses: ./.github/actions/java-test
Expand Down

0 comments on commit 328705f

Please sign in to comment.