diff options
| author | 2019-09-04 14:37:29 +1000 | |
|---|---|---|
| committer | 2019-09-04 14:37:29 +1000 | |
| commit | 922c7f4e510c12a7e207ba08904c2523d99edd55 (patch) | |
| tree | 6afd246fad5bc69a0b67062aec170c4b590e4240 | |
| parent | Merge pull request #2708 from DarkLordZach/mii-db-source-crash (diff) | |
| parent | Changed apt-get upgrade for specific package. (diff) | |
| download | yuzu-922c7f4e510c12a7e207ba08904c2523d99edd55.tar.gz yuzu-922c7f4e510c12a7e207ba08904c2523d99edd55.tar.xz yuzu-922c7f4e510c12a7e207ba08904c2523d99edd55.zip | |
Merge pull request #2835 from chris062689/master
CI Fix (Azure/Testing) - apt update before upgrade. Use apt-get.
| -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..4c9625944 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 --only-upgrade -y install 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') |