Merge pull request #482 from TotallyNotElite/master

CI for cathook!
This commit is contained in:
LightCat 2018-06-07 16:23:18 +02:00 committed by GitHub
commit 2b27a99d98
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/nullworks/cathook-ci/ubuntu-cat-dependencies
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 .."