diff --git a/.circleci/config.yml b/.circleci/config.yml index 18c97c3c..f72066e1 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 ..