Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build for Linux/v2.9.0 #3545

Merged
merged 11 commits into from
Jun 17, 2024
Merged
Prev Previous commit
Next Next commit
Update build for 24.04
  • Loading branch information
leaanthony committed Jun 17, 2024
commit 0107429092b4ce47460e874ac3a4da5440d5d558
13 changes: 7 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,20 +124,21 @@ jobs:
if: matrix.os == 'ubuntu-24.04'
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config

- name: Generate template '${{ matrix.template }}'
- name: Generate & Build template '${{ matrix.template }}'
if: matrix.os != 'ubuntu-24.04'
run: |
mkdir -p ./test-${{ matrix.template }}
cd ./test-${{ matrix.template }}
wails init -n ${{ matrix.template }} -t ${{ matrix.template }} -ci

- name: Build template '${{ matrix.template }}'
if: matrix.os != 'ubuntu-24.04'
run: |
cd ${{ matrix.template }}
wails build -v 2

- name: Build template '${{ matrix.template }}' (Ubuntu 24.04)
- name: Generate & Build template '${{ matrix.template }}' (ubuntu-24.04)
if: matrix.os == 'ubuntu-24.04'
run: |
mkdir -p ./test-${{ matrix.template }}
cd ./test-${{ matrix.template }}
wails init -n ${{ matrix.template }} -t ${{ matrix.template }} -ci
cd ${{ matrix.template }}
wails build -v 2 -tags webkit2_41

Loading