[Chores] Regen i18n #1481
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 | |
| - uses: actions/checkout@v3 | |
| with: | |
| set-safe-directory: true | |
| - name: Create builduser | |
| run: | | |
| useradd builduser -m | |
| passwd -d builduser | |
| echo "builduser ALL=(ALL) NOPASSWD: ALL" | tee /etc/sudoers.d/builduser && chmod 440 /etc/sudoers.d/builduser | |
| - name: Build AUR Package | |
| run: | | |
| mkdir /build | |
| git clone https://aur.archlinux.org/pcsx-redux-git.git /build/pcsx-redux-git | |
| chown -R builduser:builduser /build | |
| cd /build/pcsx-redux-git | |
| sed -i s,git+https://github.com/grumpycoders/pcsx-redux.git,git+file://$GITHUB_WORKSPACE#commit=$GITHUB_SHA,g PKGBUILD | |
| sudo -u builduser bash -c 'makepkg --noconfirm --syncdeps' |