Skip to content

Commit

Permalink
ci: Install chromium from PPA
Browse files Browse the repository at this point in the history
Vhs installs chromium for testing, but it may slow downs things a bit if
done during tests (as it may be repeated), while doing it once here
avoids such issue
  • Loading branch information
3v1n0 committed Nov 22, 2024
1 parent 53185eb commit c1a6b3d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ jobs:
sudo apt remove -y ubuntu-dev-tools
sudo apt autoremove -y
fi
- name: Install Chromium from PPA # It's used by vhs, speeds up tests.
run: |
set -eu
sudo add-apt-repository -y ppa:savoury1/chromium
sudo apt install -y chromium
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
Expand Down

0 comments on commit c1a6b3d

Please sign in to comment.