-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1108: Buildkite: Make docker push step soft-failable r=KtorZ a=rvl # Overview Buildkite builds are often [failing on master](https://buildkite.com/input-output-hk/cardano-wallet/builds?branch=master). 1. Docker image push does not work all the time due to credentials issues. It seems like something that may be flaky anyway. So mark it as "soft fail" in Buildkite. 2. While we're thinking about Docker... Added a data volume `/data`, which is the wallet state directory by default. Co-authored-by: Rodney Lorrimar <[email protected]>
- Loading branch information
Showing
3 changed files
with
12 additions
and
2 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
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 |
---|---|---|
|
@@ -41,3 +41,5 @@ steps: | |
- "./docker-build-push" | ||
agents: | ||
system: x86_64-linux | ||
soft_fail: | ||
- exit_status: '*' |
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