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