Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorverhoek <30193551+verhoek@users.noreply.github.com>2019-12-04 22:44:29 +0300
committerverhoek <30193551+verhoek@users.noreply.github.com>2019-12-04 23:19:51 +0300
commit99e647bdb886cf8793dfc95d61b3bbe8e2107690 (patch)
tree8bc3a38d3821387e4a14b01238ea3c3e3a166b99 /pipeline/docker-run
parent791634082a8c367e8224a3e23857ac188aff8f23 (diff)
Enhance travis output markers for testing.
Diffstat (limited to 'pipeline/docker-run')
-rwxr-xr-xpipeline/docker-run/runner.sh13
1 files changed, 6 insertions, 7 deletions
diff --git a/pipeline/docker-run/runner.sh b/pipeline/docker-run/runner.sh
index b7f299c11..4ed08661c 100755
--- a/pipeline/docker-run/runner.sh
+++ b/pipeline/docker-run/runner.sh
@@ -13,16 +13,15 @@ function sync_dirs () {
}
function setup () {
- if [ -f /sbin/apk ]; then
- apk --update add $DOCKER_PACKAGES
- return
- fi
+ travis_mark_begin "INSTALLING PACKAGES IN DOCKER"
- if [ -f /usr/bin/apt-get ]; then
+ if [ -f /sbin/apk ]; then
+ apk --update add $DOCKER_PACKAGES
+ elif [ -f /usr/bin/apt-get ]; then
export DEBIAN_FRONTEND=noninteractive
apt-get update && apt-get install -y $DOCKER_PACKAGES
- return
- fi
+ fi
+ travis_mark_end "INSTALLING PACKAGES IN DOCKER"
}
function clean_up () {