diff options
author | 2018-11-16 10:47:21 +0000 | |
---|---|---|
committer | 2018-11-16 10:47:21 +0000 | |
commit | f58511206fac167e98ce0d6f114916c1ab6f0bc5 (patch) | |
tree | e02f81ed733c4e419fdc6593de79dee0c108c6fd | |
parent | Azure: 'jobs' is not allowed. (diff) |
Azure: Should use sudo; we don't run as root
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ee540b70d..2b8c9b9c9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,7 @@ jobs: PIP_CACHE_DIR: ".cache/pip" steps: - - script: apt-get install build-essential curl docker libffi-dev libfreetype6-dev libxml2 libxml2-dev libxslt1-dev zlib1g zlib1g-dev + - script: sudo apt-get install build-essential curl docker libffi-dev libfreetype6-dev libxml2 libxml2-dev libxslt1-dev zlib1g zlib1g-dev displayName: 'Install base dependencies' - task: UsePythonVersion@0 @@ -27,7 +27,7 @@ jobs: versionSpec: '3.7.x' addToPath: true - - script: pip install pipenv + - script: sudo pip install pipenv displayName: 'Install pipenv' - script: pipenv install --dev --deploy --system |