diff options
author | vaxerski <[email protected]> | 2022-05-25 10:37:08 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-05-25 10:37:08 +0200 |
commit | 04eb3f922ce232188af2a21c51e6198ee5d8d074 (patch) | |
tree | 2b0a441eeb72d3201807c5717c78cf1b811c7c22 /.github | |
parent | 73c9b87636fbd2ef9e696f39ebacc1b280342414 (diff) | |
download | Hyprland-04eb3f922ce232188af2a21c51e6198ee5d8d074.tar.gz Hyprland-04eb3f922ce232188af2a21c51e6198ee5d8d074.zip |
respect perms
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9ee87f9e..760d1532 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,9 +19,10 @@ jobs: useradd -m githubuser echo -e "root ALL=(ALL:ALL) ALL\ngithubuser ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers - - name: Get yay + - name: Build wlroots run: | - su githubuser -c "git clone https://gitlab.freedesktop.org/wlroots/wlroots && cd wlroots && meson build/ && ninja -C build/ && sudo ninja -C build/ install && cd .." + su githubuser -c "cd ~ && git clone https://gitlab.freedesktop.org/wlroots/wlroots" + su githubuser -c "cd ~/wlroots && meson build/ && ninja -C build/ && sudo ninja -C build/ install && cd .." - name: Fix permissions for git run: | |