diff options
author | 2018-11-18 01:32:13 +0100 | |
---|---|---|
committer | 2018-11-18 01:32:13 +0100 | |
commit | 3cae36e1f908a7b156aa1049049a011f43b1bea9 (patch) | |
tree | 25f4e50aae663f84ea60fa1202a35a2ea6ce785a | |
parent | Oops, I think this should fix the pipeline. (diff) |
Build stage now has ubuntu pool
-rw-r--r-- | azure-pipelines.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0ae6ab20..d8444d87 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -45,6 +45,13 @@ jobs: displayName: 'Build Containers' dependsOn: 'test' + pool: + vmImage: 'Ubuntu 16.04' + + variables: + PIPENV_CACHE_DIR: ".cache/pipenv" + PIP_CACHE_DIR: ".cache/pip" + steps: - task: Docker@1 displayName: 'Login: Docker Hub' @@ -61,7 +68,7 @@ jobs: addToPath: true - script: sudo pip install salt-pepper - displayName: 'Install saltstack' + displayName: 'Install pepper' - task: ShellScript@2 displayName: 'Build and deploy containers' |