adding a testing environment
Some checks failed
Build / build (push) Successful in 1m59s
Test / build_and_test (push) Has been cancelled

This commit is contained in:
2026-03-11 13:54:17 +01:00
parent 15cd8d143c
commit f674a45e9b
4 changed files with 26 additions and 2 deletions

11
test/environment/Dockerfile git.filemode.normal_file
View File

@@ -0,0 +1,11 @@
FROM ubuntu:latest
WORKDIR /root
RUN apt update && apt install -y git rustup clang curl libgl1 libsm6 libwayland-egl1 libwayland-cursor0 libwayland-server0;
RUN rustup default stable;
RUN cargo install deqp-runner && cp $HOME/.cargo/bin/deqp-runner /usr/bin;
RUN curl -L https://github.com/marler8997/anyzig/releases/latest/download/anyzig-x86_64-linux.tar.gz | tar xz && mv zig /usr/bin/;
RUN git clone https://git.kbz8.me/kbz_8/VulkanDriver.git && cd VulkanDriver;
ENTRYPOINT ["/usr/bin/bash"]