| 12345678910111213141516171819202122232425 |
- name: Linux (Vulkan)
- on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - main
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Apt Update
- run: sudo apt-get update
- - name: Apt Install
- run: sudo apt install make clang libxinerama-dev libxrandr-dev libasound2-dev libxi-dev mesa-common-dev libgl-dev libxcursor-dev libvulkan-dev libgtk-3-dev libudev-dev --yes --quiet
- - name: Compile
- run: |
- cd armorpaint
- ../armorcore/make --graphics vulkan --compile
|