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.
72 lines
2.3 KiB
72 lines
2.3 KiB
kind: pipeline
|
|
type: docker
|
|
name: SmartFit_Mobile
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
branch:
|
|
- master
|
|
|
|
steps:
|
|
# - name: build-apk
|
|
# image: ghcr.io/cirruslabs/flutter:3.13.9
|
|
# commands:
|
|
# - flutter build apk
|
|
# - sfm_apk=sfm_$(date +"%Y_%m_%d_%H_%M_%S").apk
|
|
# - cp ./build/app/outputs/flutter-apk/app-release.apk $sfm_apk
|
|
# - curl -F "file=@$sfm_apk" https://anonfiles.me/api/v1/upload > upload.json
|
|
# - cat upload.json | cut -d '"' -f 12
|
|
|
|
- name: build-web
|
|
image: ghcr.io/cirruslabs/flutter:3.13.9
|
|
volumes:
|
|
- name: build
|
|
path: /tmp/smartfit_build
|
|
commands:
|
|
- flutter build web --web-renderer canvaskit
|
|
- cp -r ./build/web/* /tmp/smartfit_build
|
|
# - mountpoint /tmp/smartfit_build
|
|
|
|
- name: build-web-image
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
registry: hub.codefirst.iut.uca.fr
|
|
repo: hub.codefirst.iut.uca.fr/remi.arnal/smartfit_web
|
|
username:
|
|
from_secret: cf_username
|
|
password:
|
|
from_secret: cf_password
|
|
depends_on: [build-web]
|
|
|
|
- name: deploy-web-image
|
|
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
|
|
environement:
|
|
IMAGENAME: hub.codefirst.iut.uca.fr/remi.arnal/smartfit_web
|
|
CONTAINERNAME: smartfit_web
|
|
COMMAND: create
|
|
OVERWRITE: true
|
|
ADMINS: remiarnal,enzojolys,othmanebenjelloun
|
|
depends_on: [build-web-image]
|
|
|
|
# - name: code-analysis
|
|
# image: ghcr.io/cirruslabs/flutter:3.13.9
|
|
# environment:
|
|
# SONAR_TOKEN:
|
|
# from_secret: sonar_token
|
|
# commands:
|
|
# - export SONAR_SCANNER_VERSION=5.0.1.3006
|
|
# - 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=SmartFit_Mobile -D sonar.sources=. -D sonar.host.url=https://codefirst.iut.uca.fr/sonar -D sonar.login=$${SONAR_TOKEN}
|
|
# depends_on: [ build-apk, build-web ]
|
|
|
|
volumes:
|
|
- name: build
|
|
temp: {}
|