mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-05-02 06:46:29 -04:00
Install scenefx from AUR in build workflow
Added steps to install scenefx from AUR in the build workflow.
This commit is contained in:
parent
de5007fbdd
commit
179a2b6725
1 changed files with 13 additions and 1 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
|
@ -66,8 +66,20 @@ jobs:
|
|||
seatd \
|
||||
mesa \
|
||||
wlroots0.19 \
|
||||
scenefx0.4 \
|
||||
pkg-config
|
||||
|
||||
- name: Install scenefx from AUR
|
||||
run: |
|
||||
# Install scenefx from AUR since it's not in official repos
|
||||
# Create a non-root user for makepkg (AUR requires non-root)
|
||||
useradd -m -G wheel builder
|
||||
echo "builder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||
|
||||
# Clone and build scenefx from AUR as builder user
|
||||
cd /home/builder
|
||||
su - builder -c "git clone https://aur.archlinux.org/scenefx0.4.git"
|
||||
cd scenefx
|
||||
su - builder -c "cd /home/builder/scenefx && makepkg -si --noconfirm"
|
||||
|
||||
- name: Configure meson
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue