fixing warning, adding CIs
Some checks failed
Linux / build (x86_64, macOS-latest) (push) Has been cancelled
Linux / build (x86_64, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
2026-01-11 12:32:58 +01:00
parent 98b845f876
commit 87620b6e0c
4 changed files with 68 additions and 2 deletions

34
.gitea/workflows/linux.yml git.filemode.normal_file
View File

@@ -0,0 +1,34 @@
name: Linux
on:
repository_dispatch:
types: [create-pull-request]
pull_request:
push:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- 'README.md'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
arch: [x86_64]
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get -y install mesa-common-dev clang libsdl2-2.0-0 libsdl2-dev build-essential libvulkan-dev
- name: Build
run: cd sandbox && make