forked from duplicati/duplicati
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request duplicati#4410 from warwickmm/use_consistent_mono_…
…images Use consistent (and updated) mono versions for Docker and Travis
- Loading branch information
Showing
6 changed files
with
11 additions
and
6 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
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 @@ | ||
mono:6 |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#!/bin/bash | ||
. error_handling.sh | ||
. ./pipeline/shared/duplicati.sh | ||
|
||
PACKAGES="libgtk2.0-cil rsync" | ||
docker-run --image mono \ | ||
docker-run --image "${MONO_IMAGE}" \ | ||
--packages "$PACKAGES" \ | ||
--command "/pipeline/stage_build/job.sh" $@ | ||
--command "/pipeline/stage_build/job.sh" $@ |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#!/bin/bash | ||
. error_handling.sh | ||
. ./pipeline/shared/duplicati.sh | ||
|
||
PACKAGES="wget unzip rsync" | ||
docker-run --image mono \ | ||
docker-run --image "${MONO_IMAGE}" \ | ||
--packages "$PACKAGES" \ | ||
--command "/pipeline/stage_unittests/job.sh" $@ | ||
--command "/pipeline/stage_unittests/job.sh" $@ |