Taiga 1274 (24976) Updated guided reports process
[kohadocs.git] / .gitlab-ci.yml
1 before_script:
2   # Install ssh-agent if not already installed, it is required by Docker.
3   # (change apt-get to yum if you use a CentOS-based image)
4   - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
5
6   # Run ssh-agent (inside the build environment)
7   - eval $(ssh-agent -s)
8
9   # Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store
10   - ssh-add <(echo "$ssh_key")
11
12   # For Docker builds disable host key checking. Be aware that by adding that
13   # you are suspectible to man-in-the-middle attacks.
14   # WARNING: Use this only with the Docker executor, if you use it with shell
15   # you will overwrite your user's SSH config.
16   - mkdir -p ~/.ssh
17   - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
18   # In order to properly check the server's host key, assuming you created the
19   # SSH_SERVER_HOSTKEYS variable previously, uncomment the following two lines
20   # instead.
21   # - mkdir -p ~/.ssh
22   # - '[[ -f /.dockerenv ]] && echo "$SSH_SERVER_HOSTKEYS" > ~/.ssh/known_hosts'
23
24
25 image: debian:unstable
26
27 #test:
28 #  stage: test
29 #  script:
30 #  - apt-get update
31 #  - DEBIAN_FRONTEND=noninteractive apt-get install -y python3-sphinx  python3-sphinxcontrib.spelling make
32 #  - for l in `ls locales` ; do make -e SPHINXOPTS="-D language='$l'" BUILDDIR="build/$l" html ; make -e SPHINXOPTS="-D language='$l'" BUILDDIR="build/$l" epub ; done
33 #  only:
34 #  - master
35
36 production:
37     cache:
38        paths:
39         - build/en/html
40     stage: deploy
41     script:
42     - DEBIAN_FRONTEND=noninteractive apt-get install -y python3-sphinx  python3-sphinxcontrib.spelling make rsync
43     - make all_epub # build/LANG/epub
44     - make all_html # build/LANG/html
45     - rsync -c -u -r -e "ssh" --progress build/* chrisc@www.koha-community.org:/var/www/manual/19.05/
46     only:
47         - master
48     environment: production