Skip to content
Snippets Groups Projects
Commit 19a870de authored by Sam Galson's avatar Sam Galson
Browse files

add cd pipeline

parent ce2acbce
No related branches found
No related tags found
No related merge requests found
image: pubsweet/pubsweet-test-base variables:
IMAGE_ORG: pubsweet
IMAGE_NAME: pubsweet
BASE_DOMAIN: gateway.ps.semioticsquares.com
CONFIGURATION_REPOSITORY: https://gitlab.coko.foundation/pubsweet/deployment-config.git
install: stages:
- build
- test
- review
- staging
- production
- demo
build:
image: docker:latest
stage: build stage: build
script: yarn script:
artifacts: - docker version
expire_in: 1h - docker login -u $DOCKERHUB_USERNAME -p $DOCKERHUB_PASSWORD
paths: - echo "Ignore warning! Cannot perform an interactive login from a non TTY device"
- node_modules - docker build -t $IMAGE_ORG/$IMAGE_NAME:$CI_COMMIT_SHA .
- packages/*/node_modules - docker push $IMAGE_ORG/$IMAGE_NAME:$CI_COMMIT_SHA
- packages/components/packages/*/node_modules
lint:style: lint:style:
image: $IMAGE_ORG/$IMAGE_NAME:$CI_COMMIT_SHA
stage: test
variables:
GIT_STRATEGY: none
script: script:
- cd ${HOME}
- npm run lint:style - npm run lint:style
lint:js: lint:js:
image: $IMAGE_ORG/$IMAGE_NAME:$CI_COMMIT_SHA
stage: test
variables:
GIT_STRATEGY: none
script: script:
- cd ${HOME}
- npm run lint:js - npm run lint:js
test: test:
image: $IMAGE_ORG/$IMAGE_NAME:$CI_COMMIT_SHA
stage: test
variables:
GIT_STRATEGY: none
script: script:
- cd ${HOME}
- npm run test - npm run test
# -----------------------------------------------
# ui --------------------------------------------
# -----------------------------------------------
review:ui:
image: xpub/deployer:latest
stage: review
variables:
PACKAGE_NAME: ui
environment:
name: $PACKAGE_NAME/review/$CI_COMMIT_REF_NAME
# !! kube-lego will fail if domain > 63 chars
url: "https://${CI_ENVIRONMENT_SLUG}.${BASE_DOMAIN}"
on_stop: stop_review:ui
except:
- master
script:
- source deploy.sh
- create_deployment
stop_review:ui:
image: xpub/deployer:latest
stage: review
variables:
PACKAGE_NAME: ui
GIT_STRATEGY: none
environment:
name: $PACKAGE_NAME/review/$CI_COMMIT_REF_NAME
action: stop
when: manual
except:
- master
script:
- source deploy.sh
- delete_deployment
staging:ui:
image: xpub/deployer:latest
stage: staging
variables:
PACKAGE_NAME: ui
environment:
name: $PACKAGE_NAME/staging
url: "https://${CI_ENVIRONMENT_SLUG}.${BASE_DOMAIN}"
only:
- master
script:
- source deploy.sh
- create_deployment
production:ui:
image: xpub/deployer:latest
stage: production
variables:
PACKAGE_NAME: ui
environment:
name: $PACKAGE_NAME/production
url: "https://${CI_ENVIRONMENT_SLUG}.${BASE_DOMAIN}"
when: manual
only:
- master
script:
- source deploy.sh
- create_deployment
demo:ui:
image: xpub/deployer:latest
stage: demo
variables:
PACKAGE_NAME: ui
environment:
name: $PACKAGE_NAME/demo
url: "https://${CI_ENVIRONMENT_SLUG}.${BASE_DOMAIN}"
when: manual
script:
- source deploy.sh
- create_deployment
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