add debian build and build optimization

This commit is contained in:
2024-06-16 16:30:59 -04:00
parent b29b376414
commit 7fb2c40213
2 changed files with 20 additions and 0 deletions

View File

@ -41,3 +41,15 @@ jobs:
run: cmake .
- name: Build
run: cmake --build .
run-build-debian:
container:
image: debian:bookworm
steps:
- name: Install dependencies
run: apt update && apt install --no-install-recommends -y build-essential cmake libsdl2-dev libexiv2-dev mesa-utils nodejs ca-certificates git
- name: Check out repository code
uses: actions/checkout@v4
- name: Generate build files
run: cmake .
- name: Build
run: cmake --build .