-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #111 - fix transitive dependency skip on failure
- Loading branch information
Showing
7 changed files
with
150 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: "0.5" | ||
|
||
log_level: debug | ||
log_length: 1000 | ||
|
||
processes: | ||
procA: | ||
command: "exit 1" | ||
|
||
procB: | ||
command: echo "I shouldn't run" | ||
depends_on: | ||
procA: | ||
condition: process_completed_successfully | ||
|
||
procC: | ||
command: echo "I shouldn't run" | ||
depends_on: | ||
procB: | ||
condition: process_completed_successfully | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
version: "0.5" | ||
|
||
log_level: debug | ||
log_length: 1000 | ||
|
||
processes: | ||
procA: | ||
command: "exit 1" | ||
readiness_probe: | ||
exec: | ||
command: "pidof process-compose" | ||
initial_delay_seconds: 1 | ||
period_seconds: 1 | ||
timeout_seconds: 1 | ||
success_threshold: 1 | ||
failure_threshold: 20 | ||
|
||
procB: | ||
command: echo "I shouldn't run" | ||
readiness_probe: | ||
exec: | ||
command: "pidof process-compose" | ||
initial_delay_seconds: 1 | ||
period_seconds: 1 | ||
timeout_seconds: 1 | ||
success_threshold: 1 | ||
failure_threshold: 20 | ||
depends_on: | ||
procA: | ||
condition: process_healthy | ||
|
||
procC: | ||
command: echo "I shouldn't run" | ||
depends_on: | ||
procB: | ||
condition: process_healthy | ||
|
||
pc_log: | ||
command: "tail -f -n100 process-compose-${USER}.log" | ||
working_dir: "/tmp" | ||
namespace: debug | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: "0.5" | ||
|
||
log_level: debug | ||
log_length: 1000 | ||
|
||
processes: | ||
procA: | ||
command: "exit 1" | ||
|
||
procB: | ||
command: echo "I shouldn't run" | ||
depends_on: | ||
procA: | ||
condition: process_completed_successfully | ||
|
||
procC: | ||
command: echo "I shouldn't run" | ||
depends_on: | ||
procB: | ||
condition: process_completed_successfully | ||
|
||
pc_log: | ||
command: "tail -f -n100 process-compose-${USER}.log" | ||
working_dir: "/tmp" | ||
namespace: debug | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters