Add .gitea/workflows/validate_testbed.yml
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
name: Validate testbed
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
container:
|
||||
image: git.neosisyphus.com/evol3d/evol-testbed:clang22
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check 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
|
||||
Reference in New Issue
Block a user