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