Skip to content

Commit

Permalink
CI CD FIx
Browse files Browse the repository at this point in the history
  • Loading branch information
OSA413 committed Nov 26, 2024
1 parent f83deae commit 430c57e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ jobs:
- run: py -3.12 -m pip install --user pipx
- run: py -3.12 -m pipx ensurepath
- run: pipx install gvsbuild
- run: gvsbuild build gtk4 libadwaita librsvg
# Remove when fixed https://github.com/wingtk/gvsbuild/issues/1436#issuecomment-2424106992
- run: |
py -m venv .venv
.\.venv\Scripts\activate.ps1
py -m pip install gvsbuild
gvsbuild build gtk4 librsvg
# - run: gvsbuild build gtk4 libadwaita librsvg
- run: echo "C:\gtk-build\gtk\x64\release\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: Update dependencies
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ jobs:
- run: py -3.12 -m pip install --user pipx
- run: py -3.12 -m pipx ensurepath
- run: pipx install gvsbuild
- run: gvsbuild build gtk4 libadwaita librsvg
# Remove when fixed https://github.com/wingtk/gvsbuild/issues/1436#issuecomment-2424106992
- run: |
py -m venv .venv
.\.venv\Scripts\activate.ps1
py -m pip install gvsbuild
gvsbuild build gtk4 librsvg
# - run: gvsbuild build gtk4 libadwaita librsvg
- run: echo "C:\gtk-build\gtk\x64\release\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: Update dependencies
Expand Down

0 comments on commit 430c57e

Please sign in to comment.