1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 15:11:12 +02:00

CI: Install Conan using package manager

Before this change, the CI used `pip` to install Conan. This was not optimal.

Signed-off-by: Edgar <Edgar@AnotherFoxGuy.com>
This commit is contained in:
Edgar
2021-07-27 00:04:36 +02:00
committed by GitHub
parent 916def4061
commit 8a0502febd
2 changed files with 22 additions and 20 deletions

View File

@@ -71,6 +71,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Add conan to path
if: runner.os == 'Windows'
run: echo "C:\Program Files\Conan\conan\" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: pwsh
- name: Dependencies
run: |
exec bash "scripts/ci/dependencies.sh"
@@ -98,10 +103,6 @@ jobs:
if: runner.os == 'Windows'
run: rm "C:/Program Files/Git/usr/bin/link.EXE"
- name: "[Windows] Install sccache"
if: runner.os == 'Windows'
run: choco install sccache
- name: "Set up compiler cache"
uses: actions/cache@v2
with: