From 0bce76d1ed2f0712f1d7a14cadea854e1dcf145c Mon Sep 17 00:00:00 2001 From: Nico Vermaas <vermaas@astron.nl> Date: Thu, 19 Nov 2020 14:58:03 +0100 Subject: [PATCH] adding CI/CD pipeline --- .gitlab-ci.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d9bcb0e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,31 @@ +stages: + - build + - deploy +build: + stage: build + script: + - echo "Building deploy package" + - yarn install + - yarn build + - echo "Build successful" + artifacts: + expire_in: 1 hour + paths: + - build +deploy_production: + stage: deploy + before_script: + - 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - + - mkdir -p ~/.ssh + - chmod 700 ~/.ssh + - ssh-keyscan sdc.astron.nl >> ~/.ssh/known_hosts + - chmod 644 ~/.ssh/known_hosts + script: + - echo "Deploying to server" + - scp -r build/* vermaas@sdc.astron.nl:~/temp + - echo "Deployed" + when: manual + only: + - esap-gui-dev -- GitLab