Files
evol-testbed/.gitea/workflows/build.yml
T
mo7sen 95fb2f5ca0
build-ci-image / image (push) Failing after 5s
Fix Evol testbed image workflows
2026-05-02 17:58:58 +03:00

35 lines
756 B
YAML

name: build
# This is a manual smoke-test for the already-published image.
# Do not run it on every push in this image repository, because the first push
# happens before the image exists in the registry.
on:
workflow_dispatch:
jobs:
linux:
runs-on: ubuntu-latest
container:
image: git.neosisyphus.com/evol3d/evol-testbed: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