Skip to content
Snippets Groups Projects
Commit 05c8429b authored by Bram Veenboer's avatar Bram Veenboer
Browse files

Merge branch 'doc-ci' into 'master'

Deploy docs to dop288

See merge request RD/LOFARBeam!10
parents a85c9a1a 9e32c0e1
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ stages: ...@@ -2,6 +2,7 @@ stages:
- build-base - build-base
- build-lofarbeam - build-lofarbeam
- build-doc - build-doc
- deploy-doc
- build-dependency - build-dependency
- test-dependency - test-dependency
- deploy - deploy
...@@ -44,6 +45,21 @@ build-doc: ...@@ -44,6 +45,21 @@ build-doc:
paths: paths:
- htmldoc - htmldoc
deploy-doc:
stage: deploy-doc
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | base64 -d | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- ssh-keyscan -H dop288 > ~/.ssh/known_hosts
script:
- scp -r htmldoc/* citt@dop288:LOFARBeam
only:
refs:
- master
build-dp3: build-dp3:
stage: build-dependency stage: build-dependency
script: script:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment