Create .gitlab-ci.yml

This commit is contained in:
TotallyNotElite 2018-06-06 21:43:23 +02:00 committed by GitHub
parent 68a73490e1
commit e5f53f3567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
image: registry.gitlab.com/totallynotelite/cathook/ubuntu-cat-dependencies:build
variables:
DOCKER_DRIVER: overlay2
build:
stage: build
before_script:
- "git submodule update --init --recursive"
script:
- "cd libglez;mkdir build;cd build;cmake ..;make;make install;cd ..;cd .."
- "cd libxoverlay;mkdir build;cd build;cmake ..;make;make install;cd ..;cd .."
- "cd simple-ipc;mkdir build;cd build;cmake ..;make;make install;cd ..;cd .."
- "mkdir build; cd build; cmake ..; make; cd .."