cmex/.gitlab-ci.yml
2019-04-15 16:37:37 +03:00

37 lines
792 B
YAML

test:ole:
image: ole-dev
script:
- mkdir build
- cd build
- cmake ..
- make
test:smolensk15:
image: smolensk15-dev
before_script:
- git clean -fd
- apt-get update
- apt-get -y --force-yes install git qttools5-dev-tools qttools5-dev doxygen
- git submodule sync
- git submodule update --init
script:
- mkdir build
- cd build
- cmake -G Ninja ..
- ninja
test:bionic:
image: bionic-dev
before_script:
- git clean -fd
- apt-get update
- apt-get -y install git qttools5-dev-tools qttools5-dev doxygen python3-breathe python3-sphinx python3-sphinx-rtd-theme python3-recommonmark
- git submodule sync
- git submodule update --init
script:
- mkdir build
- cd build
- cmake -G Ninja ..
- ninja