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 3 additions and 6 deletions
Showing only changes of commit 750b2e503d - Show all commits

View File

@ -2,14 +2,11 @@ kind: pipeline
type: docker type: docker
name: continuous integration name: continuous integration
environment:
ZIG_VERSION: 0.13.0
steps: steps:
- name: setup - name: setup
image: ubuntu:latest image: ubuntu:latest
environment: environment:
ZIG_VERSION: ${ZIG_VERSION} ZIG_VERSION: 0.13.0
commands: commands:
- apt-get update - apt-get update
- apt-get install -y xz-utils wget libsdl2-dev glslang-tools spirv-tools - apt-get install -y xz-utils wget libsdl2-dev glslang-tools spirv-tools
@ -21,7 +18,7 @@ steps:
- name: build - name: build
image: ubuntu:latest image: ubuntu:latest
environment: environment:
ZIG_VERSION: ${ZIG_VERSION} ZIG_VERSION: 0.13.0
commands: commands:
- export PATH=$PATH:$(pwd)/zig-linux-x86_64-${ZIG_VERSION} - export PATH=$PATH:$(pwd)/zig-linux-x86_64-${ZIG_VERSION}
- zig build - zig build
@ -29,7 +26,7 @@ steps:
- name: test - name: test
image: ubuntu:latest image: ubuntu:latest
environment: environment:
ZIG_VERSION: ${ZIG_VERSION} ZIG_VERSION: 0.13.0
commands: commands:
- export PATH=$PATH:$(pwd)/zig-linux-x86_64-${ZIG_VERSION} - export PATH=$PATH:$(pwd)/zig-linux-x86_64-${ZIG_VERSION}
- zig build test - zig build test