Skip to content

Commit

Permalink
ci: make linux build libwebkit2gtk-4.0 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kevung committed Feb 9, 2025
1 parent fb35167 commit 5bb9696
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,24 +64,24 @@ jobs:
with:
install-only: true

- name: Install Linux Wails deps
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install libgtk-3-0 libwebkit2gtk-4.1-dev gcc-aarch64-linux-gnu
shell: bash

- name: Install Linux Wails deps for Ubuntu 20.04
- name: Install Linux Wails deps for libwebkit2gtk-4.0
if: matrix.os == 'ubuntu-20.04'
run: sudo apt-get update && sudo apt-get install libgtk-3-0 libwebkit2gtk-4.0-dev gcc-aarch64-linux-gnu
shell: bash

- name: Build App Linux
- name: Install Linux Wails deps for libwebkit2gtk-4.1
if: matrix.os == 'ubuntu-latest'
run: wails build --platform 'linux' -o blunderDB-linux-${{ steps.vars.outputs.version }} -upx -clean -tags webkit2_41
run: sudo apt-get update && sudo apt-get install libgtk-3-0 libwebkit2gtk-4.1-dev gcc-aarch64-linux-gnu
shell: bash

- name: Build App Linux for Ubuntu 20.04
- name: Build App Linux for libwebkit2gtk-4.0
if: matrix.os == 'ubuntu-20.04'
run: wails build --platform 'linux' -o blunderDB-linux-webkit2gtk-4.0-${{ steps.vars.outputs.version }} -upx -clean
run: wails build --platform 'linux' -o blunderDB-linux-${{ steps.vars.outputs.version }} -upx -clean -tags webkit2_40
shell: bash

- name: Build App Linux for libwebkit2gtk-4.1
if: matrix.os == 'ubuntu-latest'
run: wails build --platform 'linux' -o blunderDB-linux-webkit2gtk-4.1-${{ steps.vars.outputs.version }} -upx -clean -tags webkit2_41
shell: bash

- name: Build App Windows
Expand Down

0 comments on commit 5bb9696

Please sign in to comment.