Skip to content
Snippets Groups Projects
Commit 810c227b authored by tuhe's avatar tuhe
Browse files

CICD

parent aac60dd4
No related branches found
No related tags found
No related merge requests found
Pipeline #8668 failed
......@@ -2,24 +2,25 @@ image: python:3.9-buster
before_script:
- pip install -r requirements.txt
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )'
# - '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)
# - 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 -
# - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- echo "$client_secret" > src/unlearn/client_secret.txt
- cat src/unlearn/client_secret.txt
##
## Create the SSH directory and give it the right permissions
##
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
# - mkdir -p ~/.ssh
# - chmod 700 ~/.ssh
pages:
stage: deploy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment