This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 3e46596a infra: group spark files into `dev/spark/` (#2563)
3e46596a is described below
commit 3e46596adea93ccc64330721ea52f71b2220d8f2
Author: Kevin Liu <[email protected]>
AuthorDate: Fri Oct 3 00:24:24 2025 -0700
infra: group spark files into `dev/spark/` (#2563)
<!--
Thanks for opening a pull request!
-->
<!-- In the case this PR will resolve an issue, please replace
${GITHUB_ISSUE_ID} below with the actual Github issue id. -->
<!-- Closes #${GITHUB_ISSUE_ID} -->
Follow up to #2540
Related to #1527
# Rationale for this change
Put all the files related to spark inside `dev/spark/`
## Are these changes tested?
## Are there any user-facing changes?
<!-- In the case of user-facing changes, please add the changelog label.
-->
---
dev/docker-compose-integration.yml | 2 +-
dev/{ => spark}/Dockerfile | 0
dev/{ => spark}/spark-defaults.conf | 0
3 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/docker-compose-integration.yml
b/dev/docker-compose-integration.yml
index 9e983356..482468a9 100644
--- a/dev/docker-compose-integration.yml
+++ b/dev/docker-compose-integration.yml
@@ -18,7 +18,7 @@
services:
spark-iceberg:
container_name: pyiceberg-spark
- build: .
+ build: spark/
networks:
iceberg_net:
depends_on:
diff --git a/dev/Dockerfile b/dev/spark/Dockerfile
similarity index 100%
rename from dev/Dockerfile
rename to dev/spark/Dockerfile
diff --git a/dev/spark-defaults.conf b/dev/spark/spark-defaults.conf
similarity index 100%
rename from dev/spark-defaults.conf
rename to dev/spark/spark-defaults.conf