Update .gitlab-ci.yml
[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-17.11:
28   stage: test
29   script:
30   - apt-get update
31   - DEBIAN_FRONTEND=noninteractive apt-get install -y python3-sphinx  python3-sphinxcontrib.spelling make
32   - cd en/
33   - make html
34   only:
35   - manual17.11.x
36
37 production-17.11:
38     stage: deploy
39     script:
40     - DEBIAN_FRONTEND=noninteractive apt-get install -y python3-sphinx  python3-sphinxcontrib.spelling make
41     - cd en/
42     - make html
43     - scp -r build/html chrisc@www.koha-community.org:/var/www/manual/17.11/en/
44     only:
45         - manual17.11.x
46     environment: production