Skip to content

Commit

Permalink
github actions: linux: use ubuntu-20.04 and libssl-dev
Browse files Browse the repository at this point in the history
The ubuntu-latest runner image (ubuntu jammy 22.04) is updated to libssl 3.0.2, which broke qtnetwork stuff
  • Loading branch information
jaxxzer committed Mar 1, 2024
1 parent 68fa8b4 commit d02de36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
include:
- os: macos-latest
DEPLOY_PATH: pingviewer-Release.dmg
- os: ubuntu-latest
- os: ubuntu-20.04
DEPLOY_PATH: pingviewer-Release.AppImage
- os: windows-latest
DEPLOY_PATH: pingviewer-Release.zip
Expand All @@ -35,7 +35,7 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install libxcb-* libfuse-dev
sudo apt install libxcb-* libfuse-dev libssl-dev
./tools/compile.sh
mv /tmp/pingviewer-x86_64.AppImage pingviewer-Release.AppImage
Expand Down

0 comments on commit d02de36

Please sign in to comment.