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.
43 lines
1.5 KiB
43 lines
1.5 KiB
kind: pipeline
|
|
type: docker
|
|
name: JustMusic
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
# - name: app-build
|
|
# image: ghcr.io/cirruslabs/flutter:3.13.9
|
|
# commands:
|
|
# - cd ./Sources/justMUSIC/
|
|
# - 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
|
|
environment:
|
|
FIREBASE_TOKEN:
|
|
from_secret: FIREBASE_TOKEN
|
|
commands:
|
|
- cd ./Sources/justMUSIC/
|
|
- flutter build web --web-renderer canvaskit
|
|
- curl -sL https://firebase.tools | bash
|
|
- firebase deploy --token $${FIREBASE_TOKEN}
|
|
|
|
- name: code-analysis
|
|
image: ghcr.io/cirruslabs/flutter:3.13.9
|
|
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=JustMusic -D sonar.sources=./Sources/justMUSIC -D sonar.host.url=https://codefirst.iut.uca.fr/sonar |