Hello, World!

Yeah this is quite a thicc first commit but there's no way I'm
untangling this mess just for a nice set of starting commits :^)
This commit is contained in:
2022-12-19 22:41:02 +01:00
parent af8a36563a
commit e7fe9370d3
36 changed files with 4223 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM weckyy702/raychel_ci:latest
#Copy source files and set the working director
COPY . /usr/src/Raychel
WORKDIR /usr/src/Raychel
ARG COMPILER
RUN cmake -DCMAKE_CXX_COMPILER=${COMPILER} -DRAYCHEL_BUILD_TESTS=ON .
RUN cmake --build . --target all test
LABEL Name=raychel Version=0.0.1