Commit b244b44d authored by Dorchies David's avatar Dorchies David
Browse files

ci: automatic push to github

Refs #11
parent a6ff8ef9
No related merge requests found
Pipeline #26183 failed with stages
in 1 minute and 28 seconds
Showing with 43 additions and 0 deletions
+43 -0
stages: stages:
- check - check
- github
default: default:
tags: [docker] tags: [docker]
...@@ -25,3 +26,45 @@ check: ...@@ -25,3 +26,45 @@ check:
script: script:
- if [[ $NOT_CRAN == "false" ]]; then sudo apt-get update && sudo apt-get install -y qpdf; fi - if [[ $NOT_CRAN == "false" ]]; then sudo apt-get update && sudo apt-get install -y qpdf; fi
- R -e 'rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")' - R -e 'rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")'
github:
stage: github
only:
refs:
- master
- tags
before_script:
##
## Install ssh-agent if not already installed, it is required by Docker.
## (change apt-get to yum if you use an RPM-based image)
##
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )'
##
## Run ssh-agent (inside the build environment)
##
- eval $(ssh-agent -s)
##
## Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store
## We're using tr to fix line endings which makes ed25519 keys work
## without extra base64 encoding.
## https://gitlab.com/gitlab-examples/ssh-private-key/issues/1#note_48526556
##
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
##
## Create the SSH directory and give it the right permissions
##
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
##
## Optionally, if you will be using any Git commands, set the user name and
## and email.
##
- git config --global user.email "gitlab@inrae.fr"
- git config --global user.name "Gitlab CI"
script:
- git remote add github https://github.com/inrae/hubeau.git
- git push github ${CI_COMMIT_BRANCH}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment