This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push: new 30cf5b456123 [SPARK-52015][BUILD][TESTS] Update Oracle free version from 23.6 to 23.7 30cf5b456123 is described below commit 30cf5b4561235328d844fc2b20d5977635cabd5b Author: Luca Canali <luca.can...@cern.ch> AuthorDate: Tue May 6 08:31:54 2025 -0700 [SPARK-52015][BUILD][TESTS] Update Oracle free version from 23.6 to 23.7 ### What changes were proposed in this pull request? Update of the Docker image used for building and Oracle testing to the latest version, oracle-free:23.7-slim. ### Why are the changes needed? To ensure the testing environment uses the latest Oracle Free version (23.7), providing up-to-date features and fixes. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Existing tests. ### Was this patch authored or co-authored using generative AI tooling? No Closes #50801 from LucaCanali/updateOracleFreeVersion237. Authored-by: Luca Canali <luca.can...@cern.ch> Signed-off-by: Dongjoon Hyun <dongj...@apache.org> --- .github/workflows/build_branch40.yml | 2 +- connector/docker-integration-tests/README.md | 2 +- .../test/scala/org/apache/spark/sql/jdbc/OracleDatabaseOnDocker.scala | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_branch40.yml b/.github/workflows/build_branch40.yml index ac7155307c13..b0547d0860bc 100644 --- a/.github/workflows/build_branch40.yml +++ b/.github/workflows/build_branch40.yml @@ -40,7 +40,7 @@ jobs: "SCALA_PROFILE": "scala2.13", "PYSPARK_IMAGE_TO_TEST": "", "PYTHON_TO_TEST": "", - "ORACLE_DOCKER_IMAGE_NAME": "gvenzl/oracle-free:23.6-slim" + "ORACLE_DOCKER_IMAGE_NAME": "gvenzl/oracle-free:23.7-slim" } jobs: >- { diff --git a/connector/docker-integration-tests/README.md b/connector/docker-integration-tests/README.md index 74a3f57ed5c0..385218097a3c 100644 --- a/connector/docker-integration-tests/README.md +++ b/connector/docker-integration-tests/README.md @@ -45,7 +45,7 @@ the container bootstrapping. To run an individual Docker integration test, use t Besides the default Docker images, the integration tests can be run with custom Docker images. For example, - ORACLE_DOCKER_IMAGE_NAME=gvenzl/oracle-free:23.6-slim ./build/sbt -Pdocker-integration-tests "docker-integration-tests/testOnly *OracleIntegrationSuite" + ORACLE_DOCKER_IMAGE_NAME=gvenzl/oracle-free:23.7-slim ./build/sbt -Pdocker-integration-tests "docker-integration-tests/testOnly *OracleIntegrationSuite" The following environment variables can be used to specify the custom Docker images for different databases: diff --git a/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleDatabaseOnDocker.scala b/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleDatabaseOnDocker.scala index e311ec0a3b3b..8656d23a2e6a 100644 --- a/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleDatabaseOnDocker.scala +++ b/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleDatabaseOnDocker.scala @@ -21,7 +21,7 @@ import org.apache.spark.internal.Logging class OracleDatabaseOnDocker extends DatabaseOnDocker with Logging { lazy override val imageName = - sys.env.getOrElse("ORACLE_DOCKER_IMAGE_NAME", "gvenzl/oracle-free:23.6-slim") + sys.env.getOrElse("ORACLE_DOCKER_IMAGE_NAME", "gvenzl/oracle-free:23.7-slim") val oracle_password = "Th1s1sThe0racle#Pass" override val env = Map( "ORACLE_PWD" -> oracle_password, // oracle images uses this --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org