Skip to content

Commit

Permalink
CI: Workaround 3.24.35 tarball for build
Browse files Browse the repository at this point in the history
  • Loading branch information
lah7 committed Nov 29, 2022
1 parent dc84b17 commit 9d1df12
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,18 @@ jobs:
if: steps.gtksrc.outputs.cache-hit != 'true'
run: |
source PKGBUILD
wget https://download.gnome.org/sources/gtk+/${pkgver%.*}/gtk+-${_gtkver}.tar.xz
#wget https://download.gnome.org/sources/gtk+/${pkgver%.*}/gtk+-${_gtkver}.tar.xz
# 3.24.35 only: Due to missing source file (#87)
wget https://gitlab.gnome.org/GNOME/gtk/-/archive/b2ad8d2abafbd94c7e58e5e1b98c92e6b6fa6d9a/gtk-b2ad8d2abafbd94c7e58e5e1b98c92e6b6fa6d9a.tar.bz2
- name: Extract GTK Source
run: |
source PKGBUILD
tar -xJf gtk+*.tar.xz
#tar -xJf gtk+*.tar.xz
# 3.24.35 only: Due to missing source file (#87)
tar -xjf gtk-*.tar.bz2
# Uses PKGBUILD prepare() directly
- name: Apply Patches
Expand Down

0 comments on commit 9d1df12

Please sign in to comment.