Test CI for 'frame' branch
This commit is contained in:
parent
5f7d7be59f
commit
4652e0e5f8
1 changed files with 65 additions and 0 deletions
65
.gitlab-ci.yml
Normal file
65
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,65 @@
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- deploy
|
||||||
|
|
||||||
|
|
||||||
|
# Cache modules in between jobs
|
||||||
|
cache:
|
||||||
|
key: ${CI_COMMIT_REF_SLUG}
|
||||||
|
paths:
|
||||||
|
- node_modules/
|
||||||
|
|
||||||
|
|
||||||
|
# Electron app build
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
image: nikolaik/python-nodejs:python3.7-nodejs14
|
||||||
|
|
||||||
|
variables:
|
||||||
|
GIT_SUBMODULE_STRATEGY: recursive
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
|
||||||
|
|
||||||
|
script:
|
||||||
|
- poetry install
|
||||||
|
- poetry run build_static
|
||||||
|
- poetry run build
|
||||||
|
|
||||||
|
artifacts:
|
||||||
|
name: "dist"
|
||||||
|
expire_in: 1 week
|
||||||
|
paths:
|
||||||
|
- "./dist/*"
|
||||||
|
|
||||||
|
only:
|
||||||
|
- frame
|
||||||
|
- web
|
||||||
|
|
||||||
|
|
||||||
|
# Deploy to builds.openflexure.org
|
||||||
|
deploy:
|
||||||
|
stage: deploy
|
||||||
|
dependencies:
|
||||||
|
- build
|
||||||
|
image: ubuntu:latest
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
||||||
|
- eval $(ssh-agent -s)
|
||||||
|
- ssh-add <(echo "$SSH_PRIVATE_KEY_BATH_OPENFLEXURE_BASE64" | base64 --decode)
|
||||||
|
- mkdir -p ~/.ssh
|
||||||
|
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||||
|
|
||||||
|
script:
|
||||||
|
# Install rsync if not already installed
|
||||||
|
- 'which rsync || ( apt-get update -y && apt-get install rsync -y )'
|
||||||
|
|
||||||
|
# Upload the builds folder to openflexure-microscope builds
|
||||||
|
- rsync -hrvz -e ssh dist/ ci-user@openflexure.bath.ac.uk:/var/www/build/openflexure-microscope-server/
|
||||||
|
|
||||||
|
# Run update-latest.py on the build server
|
||||||
|
- ssh -t ci-user@openflexure.bath.ac.uk "/var/www/build/update-latest.py"
|
||||||
|
|
||||||
|
only:
|
||||||
|
- stable
|
||||||
Loading…
Add table
Add a link
Reference in a new issue