Add textmode CI settings

This commit is contained in:
BenCat07 2020-05-23 15:34:02 +02:00
parent 2b83d70d21
commit e986d99688

View File

@ -8,3 +8,11 @@ jobs:
- run:
name: "Compiling cathook"
command: git submodule update --init --recursive; mkdir build; cd build; cmake -DEnableWarnings=0 ..; make -j8; cd ..
textmode_build:
docker:
- image: nullworks/cathook-docker-ci-arch:latest
steps:
- checkout
- run:
name: "Compiling textmode cathook"
command: git submodule update --init --recursive; mkdir build; cd build; cmake -DCMAKE_BUILD_TYPE=Release -DVisuals_DrawType="Textmode" -DVACBypass=1 -DEnableWarnings=0 ..; make -j8; cd ..