gitlab-ci/.gitlab-ci.yml

32 lines
724 B
YAML

include:
- project: 'f1x1t/gitlab-ci'
ref: master
file: 'scheduled.yml'
smolensk15-nightly:
variables:
CMAKE_GENERATOR: Unix Makefiles
UPDATE_CMD: apt-get update
INSTALL_CMD: apt-get -y install cmake
CONFIGURE_CMD: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=_output -DCPACK_PACKAGING_INSTALL_PREFIX=/opt/rtis ..
BUILD_CMD: make -j$(nproc)
PACKAGE_CMD: tar zcf test.tar.gz
extends: .scheduled-smolensk15
orel212-nightly:
extends: .scheduled-orel212
bionic-nightly:
extends: .scheduled-bionic
focal-nightly:
extends: .scheduled-focal
elbrus-nightly:
extends: .scheduled-elbrus
check-format-sources:
only:
- merge_requests
extends: .check-format-sources