Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.gitlab-ci.yml - gitlab.com/Remmina/remmina-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e88714a8da41bd5b5cf1efeca0f7a0ceca35246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
image: ubuntu:18.04

variables:
  GIT_SUBMODULE_STRATEGY: recursive

stages:
    - updsource

remminadoc build:
  stage: updsource
  before_script:
    - apt-get update -qq
    - apt-get install -y -qq software-properties-common
                          python3-software-properties
    - apt-get install -y -qq build-essential git-core doxygen graphviz libxslt1.1
                          xsltproc
  script:
    - cd Remmina
    - doxygen
    - cd ../RemminaDoc
    - git config --global user.name "${GITLAB_USER_NAME}"
    - git config --global user.email "${GITLAB_USER_EMAIL}"
    - git add --all
    - git commit -am "Automatic doc build from remmina-ci"
    - git push origin master