Skip to content

Commit e1edfcf

Browse files
committed
docs: add extra docs for .juliabundleignore
1 parent ee0b617 commit e1edfcf

File tree

15 files changed

+265
-0
lines changed

15 files changed

+265
-0
lines changed

docs/src/reference/job-submission.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,19 @@ More precisely, it uses [Glob.jl](https://github.com/vtjnash/Glob.jl) to match t
137137
For example, a valid `.juliabundleignore` might contain the following entries to exclude a particular directory and all CSV files:
138138

139139
```
140+
output.log
140141
*.csv
141142
output-data/
142143
```
143144

145+
This `.juliabundleignore` will ignore:
146+
147+
- The `output.log` file next to the `.juliabundleignore`.
148+
- All `.csv` files next to the `.juliabundleignore` and in subdirectories.
149+
- All the contents of the `output-data/` directory next to the `.juliabundleignore`.
150+
151+
You can also have additional `.juliabundleignore` files in subdirectories and they will only apply to those directories and their subdirectories.
152+
144153
### Specifying the job image
145154

146155
JuliaHub batch jobs can run in various container images.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
julia_version = "1.12.0-rc1"
4+
manifest_format = "2.0"
5+
project_hash = "71853c6197a6a7f222db0f1978c7cb232b87c5ee"
6+
7+
[deps]

test/fixtures/bundle1/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[deps]

test/fixtures/bundle1/dir1/binary.exe

Whitespace-only changes.

test/fixtures/bundle1/dir1/foo.csv

Whitespace-only changes.

test/fixtures/bundle1/foo.csv

Whitespace-only changes.

test/fixtures/bundle1/keys.private

Whitespace-only changes.

test/fixtures/bundle1/output-data/bar

Whitespace-only changes.

test/fixtures/bundle1/output-data/foo

Whitespace-only changes.

test/fixtures/bundle1/script.jl

Whitespace-only changes.

0 commit comments

Comments
 (0)