Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
545e8c5476 | |||
42f23fdfac | |||
249a40f1aa | |||
c1187022f2 | |||
0fc1438a4a | |||
166be0c289 |
649
Cargo.lock
generated
649
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,5 @@
|
|||||||
# Cuddle Please
|
# Cuddle Please
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Cuddle Please is an extension to `cuddle`, it is a separate binary that can be executed standalone as `cuddle-please`, or in cuddle as `cuddle please`.
|
Cuddle Please is an extension to `cuddle`, it is a separate binary that can be executed standalone as `cuddle-please`, or in cuddle as `cuddle please`.
|
||||||
|
|
||||||
The goal of the software is to be a `release-please` clone, targeting `gitea` instead of `github`.
|
The goal of the software is to be a `release-please` clone, targeting `gitea` instead of `github`.
|
||||||
|
@ -91,26 +91,27 @@ impl Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn execute(self, current_dir: Option<&Path>) -> anyhow::Result<()> {
|
pub fn execute(self, current_dir: Option<&Path>) -> anyhow::Result<()> {
|
||||||
match &self.commands {
|
if let Some(c) = &self.commands {
|
||||||
Some(Commands::Release {}) => {
|
match c {
|
||||||
let (config, git_client, gitea_client, actions) = self.get_deps(current_dir)?;
|
Commands::Release {} => {
|
||||||
ReleaseCommandHandler::new(self.ui, config, git_client, gitea_client, actions)
|
let (config, git_client, gitea_client, actions) = self.get_deps(current_dir)?;
|
||||||
.execute(self.global.dry_run)?;
|
ReleaseCommandHandler::new(self.ui, config, git_client, gitea_client, actions)
|
||||||
}
|
.execute(self.global.dry_run)?;
|
||||||
Some(Commands::Config { command }) => {
|
}
|
||||||
let (config, _, _, _) = self.get_deps(current_dir)?;
|
Commands::Config { command } => {
|
||||||
ConfigCommandHandler::new(self.ui, config).execute(command)?;
|
let (config, _, _, _) = self.get_deps(current_dir)?;
|
||||||
}
|
ConfigCommandHandler::new(self.ui, config).execute(command)?;
|
||||||
Some(Commands::Gitea { command }) => {
|
}
|
||||||
let (config, _, gitea_client, _) = self.get_deps(current_dir)?;
|
Commands::Gitea { command } => {
|
||||||
|
let (config, _, gitea_client, _) = self.get_deps(current_dir)?;
|
||||||
|
|
||||||
GiteaCommandHandler::new(self.ui, config, gitea_client)
|
GiteaCommandHandler::new(self.ui, config, gitea_client)
|
||||||
.execute(command, self.global.token.expect("token to be set").deref())?;
|
.execute(command, self.global.token.expect("token to be set").deref())?;
|
||||||
|
}
|
||||||
|
Commands::Doctor {} => {
|
||||||
|
DoctorCommandHandler::new(self.ui).execute()?;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Some(Commands::Doctor {}) => {
|
|
||||||
DoctorCommandHandler::new(self.ui).execute()?;
|
|
||||||
}
|
|
||||||
None => {}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -77,6 +77,8 @@ impl ChangeLogBuilder {
|
|||||||
commit_id: None,
|
commit_id: None,
|
||||||
timestamp,
|
timestamp,
|
||||||
previous: None,
|
previous: None,
|
||||||
|
message: None,
|
||||||
|
repository: None,
|
||||||
},
|
},
|
||||||
config: self.config,
|
config: self.config,
|
||||||
release_link: self.release_link,
|
release_link: self.release_link,
|
||||||
@ -180,6 +182,7 @@ fn default_commit_parsers() -> Vec<CommitParser> {
|
|||||||
field: None,
|
field: None,
|
||||||
pattern: None,
|
pattern: None,
|
||||||
sha: None,
|
sha: None,
|
||||||
|
footer: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -201,6 +204,7 @@ fn default_commit_parsers() -> Vec<CommitParser> {
|
|||||||
field: None,
|
field: None,
|
||||||
pattern: None,
|
pattern: None,
|
||||||
sha: None,
|
sha: None,
|
||||||
|
footer: None,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,6 @@ PleaseConfig
|
|||||||
api_url: https://some-example.gitea-instance
|
api_url: https://some-example.gitea-instance
|
||||||
"#;
|
"#;
|
||||||
|
|
||||||
#[test]
|
|
||||||
#[traced_test]
|
#[traced_test]
|
||||||
fn test_config_from_current_dir() {
|
fn test_config_from_current_dir() {
|
||||||
let args = get_base_args();
|
let args = get_base_args();
|
||||||
@ -39,7 +38,6 @@ fn test_config_from_current_dir() {
|
|||||||
assert_output(ui, EXPECTED_OUTPUT, "");
|
assert_output(ui, EXPECTED_OUTPUT, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
#[traced_test]
|
#[traced_test]
|
||||||
fn test_config_from_source_dir() {
|
fn test_config_from_source_dir() {
|
||||||
let mut args = get_base_args();
|
let mut args = get_base_args();
|
||||||
@ -55,7 +53,6 @@ fn test_config_from_source_dir() {
|
|||||||
assert_output(ui, EXPECTED_OUTPUT, "");
|
assert_output(ui, EXPECTED_OUTPUT, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
#[traced_test]
|
#[traced_test]
|
||||||
fn test_config_from_stdin() {
|
fn test_config_from_stdin() {
|
||||||
let mut args = get_base_args();
|
let mut args = get_base_args();
|
||||||
@ -75,7 +72,6 @@ settings:
|
|||||||
assert_output(ui, EXPECTED_OUTPUT, "");
|
assert_output(ui, EXPECTED_OUTPUT, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
#[traced_test]
|
#[traced_test]
|
||||||
fn test_config_fails_when_not_path_is_set() {
|
fn test_config_fails_when_not_path_is_set() {
|
||||||
let args = get_base_args();
|
let args = get_base_args();
|
||||||
|
@ -24,8 +24,10 @@ components:
|
|||||||
debian:
|
debian:
|
||||||
dev:
|
dev:
|
||||||
- jq
|
- jq
|
||||||
|
- git
|
||||||
release:
|
release:
|
||||||
- jq
|
- jq
|
||||||
|
- git
|
||||||
|
|
||||||
scripts:
|
scripts:
|
||||||
"mkdocs:new":
|
"mkdocs:new":
|
||||||
|
Loading…
Reference in New Issue
Block a user