Skip to content

Commit 2cd07dd

Browse files
committed
Changed how firefox is set up in integration.yml
1 parent a50cac7 commit 2cd07dd

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/integration.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,15 @@ jobs:
2323
- name: Install Ubuntu packages
2424
run: |
2525
sudo ./utils/searx.sh install packages
26-
sudo apt install firefox
26+
# Use APT Firefox rather than Snap
27+
sudo add-apt-repository -y ppa:mozillateam/ppa
28+
echo '
29+
Package: *
30+
Pin: release o=LP-PPA-mozillateam
31+
Pin-Priority: 1001
32+
' | sudo tee /etc/apt/preferences.d/mozilla-firefox
33+
sudo apt-get update
34+
sudo apt-get install -y firefox
2735
- name: Set up Python
2836
uses: actions/setup-python@v2
2937
with:

0 commit comments

Comments
 (0)