Skip to content

Commit

Permalink
Update gvsbuild to latest version with a workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Oct 19, 2024
1 parent 5b368ef commit d680079
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ jobs:

- name: Install GTK4 (Windows)
run: |
# TODO: Remove constraint once https://github.com/wingtk/gvsbuild/issues/1436 is fixed
pipx install gvsbuild==2024.8.1
# TODO: Next 3 lines should have been `pipx install gvsbuild`, but https://github.com/wingtk/gvsbuild/issues/1436
py -m venv .venv
.\.venv\Scripts\activate.ps1
py -m pip install gvsbuild
gvsbuild build gtk4 librsvg
if: runner.os == 'Windows' && steps.cache.outputs.cache-hit != 'true'

Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ jobs:

- name: Install GTK4 (Windows)
run: |
# TODO: Remove constraint once https://github.com/wingtk/gvsbuild/issues/1436 is fixed
pipx install gvsbuild==2024.8.1
# TODO: Next 3 lines should have been `pipx install gvsbuild`, but https://github.com/wingtk/gvsbuild/issues/1436
py -m venv .venv
.\.venv\Scripts\activate.ps1
py -m pip install gvsbuild
gvsbuild build gtk4 librsvg
if: runner.os == 'Windows' && steps.cache.outputs.cache-hit != 'true'

Expand Down Expand Up @@ -207,8 +209,10 @@ jobs:

- name: Install GTK4 (Windows)
run: |
# TODO: Remove constraint once https://github.com/wingtk/gvsbuild/issues/1436 is fixed
pipx install gvsbuild==2024.8.1
# TODO: Next 3 lines should have been `pipx install gvsbuild`, but https://github.com/wingtk/gvsbuild/issues/1436
py -m venv .venv
.\.venv\Scripts\activate.ps1
py -m pip install gvsbuild
gvsbuild build gtk4 librsvg
if: runner.os == 'Windows' && steps.cache.outputs.cache-hit != 'true'

Expand Down

0 comments on commit d680079

Please sign in to comment.