This is an automated email from the ASF dual-hosted git repository.
yao pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.5 by this push:
new 30a75d13d681 [MINOR] Add `artifacts` to `.gitignore`
30a75d13d681 is described below
commit 30a75d13d681a24f705ec88ec03daccc1257714c
Author: Ruifeng Zheng <[email protected]>
AuthorDate: Fri Aug 30 18:01:59 2024 +0800
[MINOR] Add `artifacts` to `.gitignore`
### What changes were proposed in this pull request?
Add `artifacts` to `.gitignore`
### Why are the changes needed?
```
bin/spark-shell --remote "local[*]"
```
generates a lot of files in it
```
(spark_dev_312) ➜ spark git:(master) ✗ git status
On branch master
Your branch is ahead of 'origin/master' by 1386 commits.
(use "git push" to publish your local commits)
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd0$.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd0$Helper.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd0.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd1$.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd1$Helper.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd1.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd2$.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd2$Helper.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd2.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd9999999$.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/85157252-6f8a-46b3-ab42-585c70184d08/classes/ammonite/$sess/cmd9999999$Helper.class
new file:
artifacts/spark-37fc351b-0207-4957-ac39-5b23ae672c0c/8515
```
### Does this PR introduce _any_ user-facing change?
No, dev only
### How was this patch tested?
manually check
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #47936 from zhengruifeng/infra_artifacts.
Authored-by: Ruifeng Zheng <[email protected]>
Signed-off-by: Kent Yao <[email protected]>
(cherry picked from commit df4256836d719ddca87629b8701784bd8140d84e)
Signed-off-by: Kent Yao <[email protected]>
---
.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitignore b/.gitignore
index ca22dd784528..06c6660900d6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,6 +26,7 @@
.scala_dependencies
.settings
.vscode
+artifacts/
/lib/
R-unit-tests.log
R/unit-tests.out
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]