Skip to content

Commit

Permalink
Merge pull request #239 from Tormak9970/dev
Browse files Browse the repository at this point in the history
chore: test building with webkit 4.1 fix
  • Loading branch information
Tormak9970 authored Jan 12, 2025
2 parents a386ef1 + 1500434 commit bb1bd15
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/debug-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
create-release:
permissions:
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
release_id: ${{ steps.create-release.outputs.result }}
change_log: ${{ steps.changelog.outputs.changelog }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.04, windows-latest]
platform: [ubuntu-24.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -86,10 +86,16 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install Dependencies (Linux Only)
if: matrix.platform == 'ubuntu-22.04'
if: matrix.platform == 'ubuntu-24.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libappindicator3-dev librsvg2-dev patchelf libasound2-dev \
libwebkit2gtk-4.1-0=2.44.0-2 \
libwebkit2gtk-4.1-dev=2.44.0-2 \
libjavascriptcoregtk-4.1-0=2.44.0-2 \
libjavascriptcoregtk-4.1-dev=2.44.0-2 \
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
gir1.2-webkit2-4.1=2.44.0-2
- name: Install Frontend Dependencies
run: bun install
Expand All @@ -112,7 +118,7 @@ jobs:
needs: [create-release, build-tauri]
permissions:
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout Repository
Expand Down
16 changes: 11 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
create-release:
permissions:
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
release_id: ${{ steps.create-release.outputs.result }}
change_log: ${{ steps.changelog.outputs.changelog }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.04, windows-latest]
platform: [ubuntu-24.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -82,10 +82,16 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install Dependencies (Linux Only)
if: matrix.platform == 'ubuntu-22.04'
if: matrix.platform == 'ubuntu-24.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libappindicator3-dev librsvg2-dev patchelf libasound2-dev \
libwebkit2gtk-4.1-0=2.44.0-2 \
libwebkit2gtk-4.1-dev=2.44.0-2 \
libjavascriptcoregtk-4.1-0=2.44.0-2 \
libjavascriptcoregtk-4.1-dev=2.44.0-2 \
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
gir1.2-webkit2-4.1=2.44.0-2
- name: Install Frontend Dependencies
run: bun install
Expand All @@ -108,7 +114,7 @@ jobs:
needs: [create-release, build-tauri]
permissions:
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout Repository
Expand Down

0 comments on commit bb1bd15

Please sign in to comment.