25 lines
468 B
YAML
25 lines
468 B
YAML
|
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
|
||
|
|