aboutsummaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-04-11 20:28:19 +0200
committerGravatar Johannes Christ <[email protected]>2019-04-11 20:28:19 +0200
commit5f5ff88445e0b8922553345520b39bd47b0df979 (patch)
tree639f6fcfae4ca5b4b939a61a9c8f23c6eb5f6de3 /azure-pipelines.yml
parentDocument `LOG_LEVEL` and `DEBUG` setup. (diff)
Use `set -eux` in pipeline script.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 78bbffae..35fb9f82 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -8,8 +8,10 @@ jobs:
steps:
- script: |
+ set -eux
+
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable
+ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
displayName: install docker