fix: cargo update
fix: use –locked with cargo install in debian/rules
Signed-off-by: Lars Wirzenius liw@liw.fi
feat: add –version option
Signed-off-by: Lars Wirzenius liw@liw.fi
feat: add –show-config to write out configuration as JSON
Signed-off-by: Lars Wirzenius liw@liw.fi
feat: allow an optional base URL in the configuration file
Signed-off-by: Lars Wirzenius liw@liw.fi
feat: return URL to build log if base URL is configured
Signed-off-by: Lars Wirzenius liw@liw.fi
7 files changed
+127
-14
e7efad95
→
7947dd65
modified Cargo.lock
@@ -1721,7 +1721,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified debian/rules
@@ -7,7 +7,7 @@ override_dh_auto_build:
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified src/bin/radicle-native-ci.rs
@@ -12,7 +12,7 @@
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -45,6 +45,25 @@ fn main() {
|
|
|
|
|
|
| - | |
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
modified src/config.rs
@@ -19,6 +19,11 @@ pub struct Config {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -50,6 +55,13 @@ impl Config {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified src/engine.rs
@@ -48,6 +48,11 @@ impl Engine {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -197,7 +202,16 @@ impl Engine {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified src/msg.rs
@@ -18,10 +18,13 @@ fn write_response(resp: &Response) -> Result<(), NativeMessageError> {
|
|
|
|
|
|
| - | |
| - | |
| - | |
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified tests/integration.rs
@@ -30,7 +30,7 @@ use std::{
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -68,11 +68,34 @@ impl AdapterResult {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -209,8 +232,11 @@ enum ConfigKind {
|
|
|
|
|
|
| - | |
| + | |
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -277,6 +303,14 @@ impl TestCaseBuilder {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -334,6 +368,16 @@ impl TestCaseBuilder {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -353,7 +397,8 @@ impl TestCaseBuilder {
|
|
|
|
|
|
| - | |
| + | |
| + | |
|
|
|
|
|
@@ -690,3 +735,23 @@ fn happy_path() -> TestResult {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |