renderer-mvp/post-processing #56

Merged
kayomn merged 30 commits from renderer-mvp/post-processing into main 2024-07-22 02:05:25 +02:00
1 changed files with 23 additions and 5 deletions
Showing only changes of commit 97e64733da - Show all commits

View File

@ -1,9 +1,27 @@
kind: pipeline
type: docker
name: continuous integration
steps:
- name: build & test
image: chainguard/zig:latest
commands:
- zig build
- zig build test
- name: setup
image: ubuntu:latest
commands:
- apt-get update
- apt-get install -y wget gnupg software-properties-common
- apt-get install -y sdl2-dev glslang-tools spirv-tools
- wget https://ziglang.org/download/0.10.1/zig-linux-x86_64-0.10.1.tar.xz
- tar -xf zig-linux-x86_64-0.10.1.tar.xz
- export PATH=$PATH:$(pwd)/zig-linux-x86_64-0.10.1
- zig version
- name: build
image: ubuntu:latest
commands:
- export PATH=$PATH:$(pwd)/zig-linux-x86_64-0.10.1
- zig build
- name: test
image: ubuntu:latest
commands:
- export PATH=$PATH:$(pwd)/zig-linux-x86_64-0.10.1
- zig build test