mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-04-27 21:01:41 +00:00
Create actions.yml
This commit is contained in:
parent
d5aafc5036
commit
48e183608f
1 changed files with 27 additions and 0 deletions
27
.github/workflows/actions.yml
vendored
Normal file
27
.github/workflows/actions.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: Build PKGBUILD (Arch)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container: archlinux:base-devel
|
||||
|
||||
steps:
|
||||
- name: Update system and install dependencies
|
||||
run: |
|
||||
pacman -Syu --noconfirm
|
||||
pacman -S --noconfirm git cmake ninja clang \
|
||||
base-devel vulkan-headers spirv-headers openssl
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Build with makepkg
|
||||
run: |
|
||||
useradd -m builder
|
||||
chown -R builder:builder .
|
||||
sudo -u builder bash -c 'makepkg -si --noconfirm'
|
||||
Loading…
Add table
Reference in a new issue