diff options
author | 2019-04-11 20:28:19 +0200 | |
---|---|---|
committer | 2019-04-11 20:28:19 +0200 | |
commit | 5f5ff88445e0b8922553345520b39bd47b0df979 (patch) | |
tree | 639f6fcfae4ca5b4b939a61a9c8f23c6eb5f6de3 /azure-pipelines.yml | |
parent | Document `LOG_LEVEL` and `DEBUG` setup. (diff) |
Use `set -eux` in pipeline script.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 4 |
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 |