Add Evol testbed CI image

This commit is contained in:
2026-05-02 17:51:57 +03:00
commit 349fc5675f
8 changed files with 933 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
name: build
on:
push:
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
# Set vars.CI_IMAGE to the same value as vars.REGISTRY_IMAGE, or replace this
# line with your full image path, e.g. git.neosisyphus.com/evol3d/evol-testbed:clang22
container:
image: ${{ vars.CI_IMAGE }}:clang22
steps:
- uses: actions/checkout@v4
- name: Check CI toolchain
run: |
clang --version
clang++ --version
meson --version
ninja --version
python3 --version
vulkaninfo --summary || true
- name: Configure
run: |
meson setup build
- name: Build
run: |
meson compile -C build