Skip to content

Commit

Permalink
ci: Fix dependency ordering
Browse files Browse the repository at this point in the history
Signed-off-by: Shinyzenith <[email protected]>
  • Loading branch information
Shinyzenith committed Oct 17, 2023
1 parent d421123 commit 7b7faa2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .builds/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@ tasks:
WAYLAND_VERSION=1.21.0
WLROOTS_VERSION=0.16.0
cd scenefx
meson setup build --auto-features enabled --reconfigure -Dwerror=false -Dexamples=false
ninja -C build install
cd ..
cd wayland
git checkout $WAYLAND_VERSION
meson setup build -Ddocumentation=false -Dtests=false --prefix /usr
Expand All @@ -55,6 +50,11 @@ tasks:
sudo ninja -C build install
cd ..
cd scenefx
meson setup build --auto-features enabled --reconfigure -Dwerror=false -Dexamples=false
ninja -C build install
cd ..
wget -nv https://ziglang.org/download/$ZIG_VERSION/zig-linux-x86_64-$ZIG_VERSION.tar.xz
tar -xvf zig-linux-x86_64-$ZIG_VERSION.tar.xz 1>/dev/null
sudo mv ./zig-linux-x86_64-$ZIG_VERSION/zig /usr/bin
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/arch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ jobs:
WAYLAND_VERSION=1.21.0
WLROOTS_VERSION=0.16.0
git clone https://github.com/wlrfx/scenefx.git
cd scenefx
meson setup build --auto-features enabled --reconfigure -Dwerror=false -Dexamples=false
ninja -C build install
cd ..
git clone https://gitlab.freedesktop.org/wayland/wayland.git
cd wayland
git checkout $WAYLAND_VERSION
Expand All @@ -42,6 +36,13 @@ jobs:
ninja -C build install
cd ..
git clone https://github.com/wlrfx/scenefx.git
cd scenefx
meson setup build --auto-features enabled --reconfigure -Dwerror=false -Dexamples=false
ninja -C build install
cd ..
wget -nv https://ziglang.org/download/$ZIG_VERSION/zig-linux-x86_64-$ZIG_VERSION.tar.xz
tar -xvf zig-linux-x86_64-$ZIG_VERSION.tar.xz 1>/dev/null
mv ./zig-linux-x86_64-$ZIG_VERSION/zig /usr/bin
Expand Down

0 comments on commit 7b7faa2

Please sign in to comment.