diff options
author | vaxerski <[email protected]> | 2022-05-25 10:34:04 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-05-25 10:34:04 +0200 |
commit | 73c9b87636fbd2ef9e696f39ebacc1b280342414 (patch) | |
tree | 7f949c5977b42f93449367f562b6d249af91b009 /.github | |
parent | 9a34fec3d460ba84ec496c41161317ade47dc974 (diff) | |
download | Hyprland-73c9b87636fbd2ef9e696f39ebacc1b280342414.tar.gz Hyprland-73c9b87636fbd2ef9e696f39ebacc1b280342414.zip |
Build with a user
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yaml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index befcc22c..9ee87f9e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,13 +14,14 @@ jobs: pacman --noconfirm --noprogressbar -Syyu pacman --noconfirm --noprogressbar -Sy glslang libepoxy libfontenc libxcvt libxfont2 libxkbfile vulkan-headers vulkan-validation-layers xcb-util-errors xcb-util-renderutil xcb-util-wm xorg-fonts-encodings xorg-server-common xorg-setxkbmap xorg-xkbcomp xorg-xwayland git cmake go clang lld libc++ pkgconf meson ninja wayland wayland-protocols libinput libxkbcommon pixman glm libdrm libglvnd cairo pango systemd scdoc base-devel seatd - - name: Build wlroots-git + - name: Set up user run: | - git clone https://gitlab.freedesktop.org/wlroots/wlroots && cd wlroots - meson build/ - ninja -C build/ - ninja -C build/ install - cd .. + useradd -m githubuser + echo -e "root ALL=(ALL:ALL) ALL\ngithubuser ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers + + - name: Get yay + 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 .." - name: Fix permissions for git run: | |