Правила для автосборки

This commit is contained in:
Andrei Astafev 2019-02-12 19:48:37 +03:00
parent 7cb287e8f9
commit 91ddc00a10

24
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,24 @@
test:smolensk15:
image: smolensk15-dev
before_script:
- apt-get -y --force-yes install git
- git submodule sync
- git submodule update --init
script:
- mkdir build
- cd build
- cmake -G Ninja ..
- ninja
test:bionic:
image: bionic-dev
before_script:
- apt-get -y --force-yes install git
- git submodule sync
- git submodule update --init
script:
- mkdir build
- cd build
- cmake -G Ninja ..
- ninja