Skip to content

Commit

Permalink
Add SoX install script for linux CI
Browse files Browse the repository at this point in the history
Work done for #196
  • Loading branch information
atruskie committed Mar 26, 2020
1 parent 62b0320 commit d0f4d30
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/azure-pipelines-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ jobs:
path: $(NUGET_PACKAGES)
displayName: Cache NuGet packages

- ${{ if startsWith(platform.rid, 'linux') }}:
- template: azure-pipelines-dependencies-linux.yml

- pwsh: |
$sdkVersion = (Get-Content "global.json" | ConvertFrom-Json).sdk.version
echo "##vso[task.setvariable variable=sdkVersion]$sdkVersion"
Expand Down
5 changes: 5 additions & 0 deletions build/azure-pipelines-dependencies-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

steps:
- script: |
sudo apt-get update -y
sudo apt-get install -y libsox-fmt-all sox

0 comments on commit d0f4d30

Please sign in to comment.