Skip to content

Commit

Permalink
Merge pull request #39 from moi15moi/Install-mkvtoolnix-in-test-workflow
Browse files Browse the repository at this point in the history
[workflows\run_test] Install mkvtoolnix
  • Loading branch information
moi15moi authored Feb 3, 2024
2 parents 1754e3d + f84dc22 commit 70415ab
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/run_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,28 @@ jobs:
- name: Install Python requirements
run: pip install --upgrade --upgrade-strategy eager .

- name: Install platform-specific requirements (Ubuntu)
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install mkvtoolnix
- name: Install platform-specific requirements (macOS)
if: runner.os == 'macOS'
run: brew install mkvtoolnix

- name: Install platform-specific requirements (Windows)
if: runner.os == 'Windows'
run: |
choco install mkvtoolnix --no-progress --yes
Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
refreshenv
$mkvmergePath = (Get-Command mkvmerge).Source
$mkvtoolnixPath = Split-Path -Path $mkvmergePath -Parent
echo $mkvtoolnixPath | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# We need to conserve mkvtoolnix in the PATH env variable.
# From https://stackoverflow.com/a/73981698/15835974

- name: Install pytest
run: |
pip install pytest
Expand Down

0 comments on commit 70415ab

Please sign in to comment.