You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
3.1 KiB
88 lines
3.1 KiB
kind: pipeline
|
|
type: docker
|
|
name: BowlIn
|
|
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
# build CONTAINER for app-build on flutter IMAGE
|
|
- name: app-build
|
|
image: cirrusci/flutter:stable
|
|
commands:
|
|
- cd ./Sources/bowlin_project/
|
|
- flutter build apk
|
|
|
|
- name: test
|
|
image: cirrusci/flutter:stable
|
|
commands:
|
|
- cd Sources/bowlin_project/
|
|
- flutter pub get
|
|
- flutter test --machine --coverage
|
|
depends_on: [ app-build ]
|
|
- name: docker-build
|
|
image: maven:3-jdk-11
|
|
commands:
|
|
- cd ./Sources/API/Quarkus
|
|
- mvn clean package -DskipTests
|
|
|
|
- name: docker-push
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: Sources/API/Quarkus/src/main/docker/Dockerfile
|
|
context: Sources/API/Quarkus/
|
|
registry: hub.codefirst.iut.uca.fr
|
|
repo: hub.codefirst.iut.uca.fr/lucas.delanier/bowl_in
|
|
username:
|
|
from_secret: SECRET_REGISTRY_USERNAME
|
|
password:
|
|
from_secret: SECRET_REGISTRY_PASSWORD
|
|
depends_on: [ docker-build ]
|
|
|
|
#container deployment
|
|
- name: deploy-container
|
|
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
|
|
environment:
|
|
IMAGENAME: hub.codefirst.iut.uca.fr/lucas.delanier/bowl_in:latest
|
|
CONTAINERNAME: bowl-api
|
|
COMMAND: create
|
|
OVERWRITE: true
|
|
ADMINS: emrekartal,louisonparant,davidd_almeida,lucasdelanier,arthurvalin
|
|
depends_on: [ docker-build-and-push ]
|
|
|
|
# build CONTAINER for sonar on flutter IMAGE
|
|
- name: code-analysis
|
|
image: cirrusci/flutter:stable
|
|
environment:
|
|
SONAR_TOKEN:
|
|
from_secret: SONAR_TOKEN
|
|
commands:
|
|
- export SONAR_SCANNER_VERSION=4.7.0.2747
|
|
- export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux
|
|
- curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
|
|
- unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
|
|
- export PATH=$SONAR_SCANNER_HOME/bin:$PATH
|
|
- export SONAR_SCANNER_OPTS="-server"
|
|
- sonar-scanner -D sonar.projectKey=Bowl_in -D sonar.sources=./Sources/bowlin_project -D sonar.host.url=https://codefirst.iut.uca.fr/sonar -D sonar.flutter.coverage.reportPath=./Sources/bowlin_project/coverage/lcov.info
|
|
depends_on: [ test ]
|
|
|
|
# database container deployment
|
|
- name: deploy-container-postgresql
|
|
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
|
|
environment:
|
|
IMAGENAME: postgres:latest
|
|
CONTAINERNAME: postgresql
|
|
COMMAND: create
|
|
# OVERWRITE: false
|
|
PRIVATE: false
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_ROOT_PASSWORD:
|
|
from_secret: db_root_password
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_DB:
|
|
from_secret: db_database
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_USER:
|
|
from_secret: db_user
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_PASSWORD:
|
|
from_secret: db_password
|
|
ADMINS: emrekartal,louisonparant,davidd_almeida,lucasdelanier,arthurvalin |