SIO0 overhaul #1107
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Linux CI AUR | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| aur-build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: archlinux:latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| pacman -Syu --noconfirm --needed capstone curl ffmpeg freetype2 glfw libuv sdl2 zlib git make pkg-config sudo base-devel pacman-contrib | |
| - name: Create builduser | |
| run: | | |
| useradd builduser -m | |
| passwd -d builduser | |
| - name: Build AUR Package | |
| run: | | |
| git clone https://aur.archlinux.org/pcsx-redux-git.git | |
| chown -R builduser:builduser pcsx-redux-git | |
| cd pcsx-redux-git | |
| sudo -u builduser makepkg |