ci: split iceberg_spark_test workflow per Iceberg version#4414
Open
andygrove wants to merge 1 commit into
Open
ci: split iceberg_spark_test workflow per Iceberg version#4414andygrove wants to merge 1 commit into
andygrove wants to merge 1 commit into
Conversation
Move job logic into iceberg_spark_test_reusable.yml and add three thin caller workflows (1.8, 1.9, 1.10). Each caller runs against a single Spark version: Iceberg 1.8 with Spark 3.4 / JDK 11; Iceberg 1.9 and 1.10 with Spark 3.5 / JDK 17. Only the latest (1.10) runs on pull requests; 1.8 and 1.9 run on pushes to main only.
Comment on lines
+71
to
+77
| uses: ./.github/workflows/iceberg_spark_test_reusable.yml | ||
| with: | ||
| iceberg-short: '1.10' | ||
| iceberg-full: '1.10.0' | ||
| spark-short: '3.5' | ||
| spark-full: '3.5.8' | ||
| java: 17 |
Comment on lines
+51
to
+57
| uses: ./.github/workflows/iceberg_spark_test_reusable.yml | ||
| with: | ||
| iceberg-short: '1.8' | ||
| iceberg-full: '1.8.1' | ||
| spark-short: '3.4' | ||
| spark-full: '3.4.3' | ||
| java: 11 |
Comment on lines
+51
to
+57
| uses: ./.github/workflows/iceberg_spark_test_reusable.yml | ||
| with: | ||
| iceberg-short: '1.9' | ||
| iceberg-full: '1.9.1' | ||
| spark-short: '3.5' | ||
| spark-full: '3.5.8' | ||
| java: 17 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Splits
.github/workflows/iceberg_spark_test.ymlinto one workflow per Iceberg version, mirroring the recentspark_sql_testsplit (#4408).iceberg_spark_test_reusable.ymlholds the build-native job and the three Iceberg test jobs (iceberg-spark,iceberg-spark-extensions,iceberg-spark-runtime), parameterized by Iceberg / Spark / Java version.iceberg_spark_test_1_8.yml,iceberg_spark_test_1_9.yml,iceberg_spark_test_1_10.yml— each pin a single Spark version:mainonly. All three remainworkflow_dispatch-able.docs/source/contributor-guide/iceberg-spark-tests.mdto describe the new layout.Test plan
actionlintpasses on all four new workflow files.