2020-03-11 16:35:04 +00:00
|
|
|
#Trying to set up the CI, probably won't work
|
|
|
|
image: gradle:jdk13
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- test
|
|
|
|
- code_quality
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
#Sets up the docker
|
|
|
|
smarthut_deploy:
|
|
|
|
stage: deploy
|
|
|
|
image: docker:latest
|
2020-03-16 13:53:07 +00:00
|
|
|
tags:
|
|
|
|
- dind
|
2020-02-28 08:30:20 +00:00
|
|
|
services:
|
2020-03-11 16:35:04 +00:00
|
|
|
- docker:dind
|
|
|
|
variables:
|
|
|
|
DOCKER_DRIVER: overlay
|
|
|
|
before_script:
|
|
|
|
- docker version
|
|
|
|
- docker info
|
|
|
|
- docker login -u smarthutsm -p $CI_DOCKER_PASS #GiovanniRoberto
|
2020-02-28 08:30:20 +00:00
|
|
|
script:
|
2020-03-11 16:35:04 +00:00
|
|
|
- "docker build -t smarthutsm/smarthut:${CI_COMMIT_BRANCH} --pull ."
|
|
|
|
- "docker push smarthutsm/smarthut:${CI_COMMIT_BRANCH}"
|
|
|
|
after_script:
|
|
|
|
- docker logout
|
|
|
|
|
|
|
|
|
|
|
|
#base checks for the code
|
|
|
|
build:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- gradle clean
|
|
|
|
- gradle assemble
|
2020-02-28 08:30:20 +00:00
|
|
|
artifacts:
|
2020-03-11 16:35:04 +00:00
|
|
|
paths:
|
|
|
|
- build/libs/*.jar
|
|
|
|
expire_in: 1 week
|
|
|
|
|
|
|
|
#Runs the various tests and creates a report on the test coverage
|
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- gradle test
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/test-results/test/TEST-*.xml
|
2020-02-28 08:30:20 +00:00
|
|
|
reports:
|
2020-03-11 16:35:04 +00:00
|
|
|
junit: build/test-results/test/TEST-*.xml
|
|
|
|
|
|
|
|
#Runs a quality check on the code and creates a report on the codes
|
|
|
|
code_quality:
|
|
|
|
stage: code_quality
|
|
|
|
script:
|
|
|
|
- gradle cpdCheck
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/reports/cpd/cpdCheck.xml
|
|
|
|
#create a report on the quality of the code
|
|
|
|
expose_as: 'Code Quality Report'
|
2020-03-12 16:47:40 +00:00
|
|
|
allow_failure: true
|