Add tempdir
setting (#1369)
This commit is contained in:
parent
8b7640b633
commit
beeaa6ce2d
@ -59,14 +59,15 @@ assignment : NAME ':=' expression eol
|
|||||||
|
|
||||||
export : 'export' assignment
|
export : 'export' assignment
|
||||||
|
|
||||||
setting : 'set' 'dotenv-load' boolean?
|
setting : 'set' 'allow-duplicate-recipes' boolean?
|
||||||
| 'set' 'ignore-comments' boolean?
|
| 'set' 'dotenv-load' boolean?
|
||||||
| 'set' 'export' boolean?
|
| 'set' 'export' boolean?
|
||||||
| 'set' 'fallback' boolean?
|
| 'set' 'fallback' boolean?
|
||||||
|
| 'set' 'ignore-comments' boolean?
|
||||||
| 'set' 'positional-arguments' boolean?
|
| 'set' 'positional-arguments' boolean?
|
||||||
| 'set' 'allow-duplicate-recipes' boolean?
|
|
||||||
| 'set' 'windows-powershell' boolean?
|
|
||||||
| 'set' 'shell' ':=' '[' string (',' string)* ','? ']'
|
| 'set' 'shell' ':=' '[' string (',' string)* ','? ']'
|
||||||
|
| 'set' 'tempdir string
|
||||||
|
| 'set' 'windows-powershell' boolean?
|
||||||
| 'set' 'windows-shell' ':=' '[' string (',' string)* ','? ']'
|
| 'set' 'windows-shell' ':=' '[' string (',' string)* ','? ']'
|
||||||
|
|
||||||
boolean : ':=' ('true' | 'false')
|
boolean : ':=' ('true' | 'false')
|
||||||
|
@ -650,6 +650,7 @@ foo:
|
|||||||
| `ignore-comments` | boolean | False | Ignore recipe lines beginning with `#`. |
|
| `ignore-comments` | boolean | False | Ignore recipe lines beginning with `#`. |
|
||||||
| `positional-arguments` | boolean | False | Pass positional arguments. |
|
| `positional-arguments` | boolean | False | Pass positional arguments. |
|
||||||
| `shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. |
|
| `shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. |
|
||||||
|
| `tempdir` | string | - | Create temporary directories in `tempdir` instead of the system default temporary directory. |
|
||||||
| `windows-powershell` | boolean | False | Use PowerShell on Windows as default shell. (Deprecated. Use `windows-shell` instead. |
|
| `windows-powershell` | boolean | False | Use PowerShell on Windows as default shell. (Deprecated. Use `windows-shell` instead. |
|
||||||
| `windows-shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. |
|
| `windows-shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. |
|
||||||
|
|
||||||
|
@ -71,6 +71,9 @@ impl<'src> Analyzer<'src> {
|
|||||||
Setting::WindowsShell(windows_shell) => {
|
Setting::WindowsShell(windows_shell) => {
|
||||||
settings.windows_shell = Some(windows_shell);
|
settings.windows_shell = Some(windows_shell);
|
||||||
}
|
}
|
||||||
|
Setting::Tempdir(tempdir) => {
|
||||||
|
settings.tempdir = Some(tempdir);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@ pub(crate) enum Keyword {
|
|||||||
True,
|
True,
|
||||||
WindowsPowershell,
|
WindowsPowershell,
|
||||||
WindowsShell,
|
WindowsShell,
|
||||||
|
Tempdir,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Keyword {
|
impl Keyword {
|
||||||
|
@ -240,6 +240,9 @@ impl<'src> Node<'src> for Set<'src> {
|
|||||||
set.push_mut(Tree::string(&argument.cooked));
|
set.push_mut(Tree::string(&argument.cooked));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Setting::Tempdir(value) => {
|
||||||
|
set.push_mut(Tree::string(value));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
set
|
set
|
||||||
|
@ -796,6 +796,11 @@ impl<'tokens, 'src> Parser<'tokens, 'src> {
|
|||||||
value: Setting::WindowsShell(self.parse_shell()?),
|
value: Setting::WindowsShell(self.parse_shell()?),
|
||||||
name,
|
name,
|
||||||
})
|
})
|
||||||
|
} else if name.lexeme() == Keyword::Tempdir.lexeme() {
|
||||||
|
Ok(Set {
|
||||||
|
value: Setting::Tempdir(self.parse_string_literal()?.cooked),
|
||||||
|
name,
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
Err(name.error(CompileErrorKind::UnknownSetting {
|
Err(name.error(CompileErrorKind::UnknownSetting {
|
||||||
setting: name.lexeme(),
|
setting: name.lexeme(),
|
||||||
|
@ -250,15 +250,17 @@ impl<'src, D> Recipe<'src, D> {
|
|||||||
message: format!("bad shebang line: {}", shebang_line),
|
message: format!("bad shebang line: {}", shebang_line),
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
let tmp = tempfile::Builder::new()
|
let mut tempdir_builder = tempfile::Builder::new();
|
||||||
.prefix("just")
|
tempdir_builder.prefix("just");
|
||||||
.tempdir()
|
let tempdir = match &context.settings.tempdir {
|
||||||
.map_err(|error| Error::TmpdirIo {
|
Some(tempdir) => tempdir_builder.tempdir_in(context.search.working_directory.join(tempdir)),
|
||||||
recipe: self.name(),
|
None => tempdir_builder.tempdir(),
|
||||||
io_error: error,
|
}
|
||||||
})?;
|
.map_err(|error| Error::TmpdirIo {
|
||||||
let mut path = tmp.path().to_path_buf();
|
recipe: self.name(),
|
||||||
|
io_error: error,
|
||||||
|
})?;
|
||||||
|
let mut path = tempdir.path().to_path_buf();
|
||||||
path.push(shebang.script_filename(self.name()));
|
path.push(shebang.script_filename(self.name()));
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -9,6 +9,7 @@ pub(crate) enum Setting<'src> {
|
|||||||
IgnoreComments(bool),
|
IgnoreComments(bool),
|
||||||
PositionalArguments(bool),
|
PositionalArguments(bool),
|
||||||
Shell(Shell<'src>),
|
Shell(Shell<'src>),
|
||||||
|
Tempdir(String),
|
||||||
WindowsPowerShell(bool),
|
WindowsPowerShell(bool),
|
||||||
WindowsShell(Shell<'src>),
|
WindowsShell(Shell<'src>),
|
||||||
}
|
}
|
||||||
@ -24,6 +25,9 @@ impl<'src> Display for Setting<'src> {
|
|||||||
| Setting::PositionalArguments(value)
|
| Setting::PositionalArguments(value)
|
||||||
| Setting::WindowsPowerShell(value) => write!(f, "{}", value),
|
| Setting::WindowsPowerShell(value) => write!(f, "{}", value),
|
||||||
Setting::Shell(shell) | Setting::WindowsShell(shell) => write!(f, "{}", shell),
|
Setting::Shell(shell) | Setting::WindowsShell(shell) => write!(f, "{}", shell),
|
||||||
|
Setting::Tempdir(tempdir) => {
|
||||||
|
write!(f, "{:?}", tempdir)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,7 @@ pub(crate) struct Settings<'src> {
|
|||||||
pub(crate) ignore_comments: bool,
|
pub(crate) ignore_comments: bool,
|
||||||
pub(crate) positional_arguments: bool,
|
pub(crate) positional_arguments: bool,
|
||||||
pub(crate) shell: Option<Shell<'src>>,
|
pub(crate) shell: Option<Shell<'src>>,
|
||||||
|
pub(crate) tempdir: Option<String>,
|
||||||
pub(crate) windows_powershell: bool,
|
pub(crate) windows_powershell: bool,
|
||||||
pub(crate) windows_shell: Option<Shell<'src>>,
|
pub(crate) windows_shell: Option<Shell<'src>>,
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,7 @@ fn alias() {
|
|||||||
"fallback": false,
|
"fallback": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
@ -78,6 +79,7 @@ fn assignment() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -123,6 +125,7 @@ fn body() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -179,6 +182,7 @@ fn dependencies() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -272,6 +276,7 @@ fn dependency_argument() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -328,6 +333,7 @@ fn duplicate_recipes() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -366,6 +372,7 @@ fn doc_comment() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -391,6 +398,7 @@ fn empty_justfile() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -531,6 +539,7 @@ fn parameters() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -607,6 +616,7 @@ fn priors() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -645,6 +655,7 @@ fn private() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -683,6 +694,7 @@ fn quiet() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -711,7 +723,6 @@ fn settings() {
|
|||||||
set positional-arguments
|
set positional-arguments
|
||||||
set ignore-comments
|
set ignore-comments
|
||||||
set shell := ['a', 'b', 'c']
|
set shell := ['a', 'b', 'c']
|
||||||
|
|
||||||
foo:
|
foo:
|
||||||
#!bar
|
#!bar
|
||||||
",
|
",
|
||||||
@ -744,6 +755,7 @@ fn settings() {
|
|||||||
"arguments": ["b", "c"],
|
"arguments": ["b", "c"],
|
||||||
"command": "a",
|
"command": "a",
|
||||||
},
|
},
|
||||||
|
"tempdir": null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -785,6 +797,7 @@ fn shebang() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir": null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -823,6 +836,7 @@ fn simple() {
|
|||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir": null,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
},
|
},
|
||||||
@ -863,6 +877,7 @@ fn attribute() {
|
|||||||
"fallback": false,
|
"fallback": false,
|
||||||
"positional_arguments": false,
|
"positional_arguments": false,
|
||||||
"shell": null,
|
"shell": null,
|
||||||
|
"tempdir" : null,
|
||||||
"ignore_comments": false,
|
"ignore_comments": false,
|
||||||
"windows_powershell": false,
|
"windows_powershell": false,
|
||||||
"windows_shell": null,
|
"windows_shell": null,
|
||||||
|
@ -1,6 +1,36 @@
|
|||||||
|
use super::*;
|
||||||
|
|
||||||
pub(crate) fn tempdir() -> tempfile::TempDir {
|
pub(crate) fn tempdir() -> tempfile::TempDir {
|
||||||
tempfile::Builder::new()
|
tempfile::Builder::new()
|
||||||
.prefix("just-test-tempdir")
|
.prefix("just-test-tempdir")
|
||||||
.tempdir()
|
.tempdir()
|
||||||
.expect("failed to create temporary directory")
|
.expect("failed to create temporary directory")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_tempdir_is_set() {
|
||||||
|
Test::new()
|
||||||
|
.justfile(
|
||||||
|
"
|
||||||
|
set tempdir := '.'
|
||||||
|
foo:
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
cat just*/foo
|
||||||
|
",
|
||||||
|
)
|
||||||
|
.shell(false)
|
||||||
|
.tree(tree! {
|
||||||
|
foo: {
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.current_dir("foo")
|
||||||
|
.stdout(
|
||||||
|
"
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
|
||||||
|
cat just*/foo
|
||||||
|
",
|
||||||
|
)
|
||||||
|
.run();
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user