gitlab-ci/README.md

30 lines
819 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Шаблон для автосборки проекта
Скопировать файл `scheduled.yml` в каталог проекта `.gitlab-ci` и
подключить его в файле `.gitlab-ci.yml`. Команды для обновления индекса
репозитория и установки дополнительных пакетов задаются через переменные
`APT_UPDATE_CMD` и `APT_INSTALL_CMD`.
Пример:
```yaml
include:
- local: /.gitlab-ci/scheduled.yml
smolensk15-nightly:
variables:
APT_UPDATE_CMD: apt-get update
APT_INSTALL_CMD: apt-get -y install libgsl-dev
extends: .scheduled-smolensk15
orel212-nightly:
extends: .scheduled-orel212
bionic-nightly:
extends: .scheduled-bionic
elbrus-nightly:
extends: .scheduled-elbrus
```