diff options
| author | 2019-09-04 03:49:55 +0000 | |
|---|---|---|
| committer | 2019-09-04 03:49:55 +0000 | |
| commit | 573a1e766285f0d4a0797f6b239f30dc7158b918 (patch) | |
| tree | 3b732e322041bcab702260696026f62f0571aa11 /.ci/templates | |
| parent | Merge pull request #2708 from DarkLordZach/mii-db-source-crash (diff) | |
| download | yuzu-573a1e766285f0d4a0797f6b239f30dc7158b918.tar.gz yuzu-573a1e766285f0d4a0797f6b239f30dc7158b918.tar.xz yuzu-573a1e766285f0d4a0797f6b239f30dc7158b918.zip | |
apt update before upgrade. Use apt-get.
Identified a bug in the script which uses the azure image when attempting to upgrade python3-pip.
Package index was out of date because apt-get update was not ran before attempting the upgrade.
Diffstat (limited to '.ci/templates')
| -rw-r--r-- | .ci/templates/build-testing.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/templates/build-testing.yml b/.ci/templates/build-testing.yml index a307addfd..9ce072b9b 100644 --- a/.ci/templates/build-testing.yml +++ b/.ci/templates/build-testing.yml | |||
| @@ -10,7 +10,7 @@ jobs: | |||
| 10 | BuildSuffix: 'windows-testing' | 10 | BuildSuffix: 'windows-testing' |
| 11 | ScriptFolder: 'windows' | 11 | ScriptFolder: 'windows' |
| 12 | steps: | 12 | steps: |
| 13 | - script: sudo apt upgrade python3-pip && pip install requests urllib3 | 13 | - script: sudo apt-get update && sudo apt-get -y upgrade python3-pip && pip install requests urllib3 |
| 14 | displayName: 'Prepare Environment' | 14 | displayName: 'Prepare Environment' |
| 15 | - task: PythonScript@0 | 15 | - task: PythonScript@0 |
| 16 | condition: eq(variables['Build.Reason'], 'PullRequest') | 16 | condition: eq(variables['Build.Reason'], 'PullRequest') |