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: 79886e47391b404367c4652755421e274b247670 (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
---
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 add --all
    - git commit -am "Automatic doc build from remmina-ci"