Skip to content

Commit

Permalink
adding iOS build debug stage for testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasoskorep committed Aug 28, 2022
1 parent 0cdc52d commit c342006
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,43 @@ unit-tests:
- MacOS


build-debug:
build-android-debug:
stage: build
only:
- branches
script:
- sh install_tflite.sh -d
- flutter build appbundle --debug
- flutter build appbundle --debug
artifacts:
name: android-debug-abb
name: android-debug
paths:
- build/app/outputs/bundle/debug/app-debug.aab
- build/app/outputs/flutter-apk/app-release.apk
tags:
- MacOS

deploy-job:

deploy-android-job:
stage: deploy
script:
- echo "Deploying application..."
- echo "Application successfully deployed. (JK gotta implement this sometime)"
tags:
- MacOS
- MacOS


build-ios-debug:
stage: build
only:
- branches
script:
- sh install_tflite.sh -d
- flutter build ipa
# artifacts:
# name: ios-debug
# paths:
# - build/app/outputs/bundle/debug/app-debug.aab
# - build/app/outputs/flutter-apk/app-release.apk
tags:
- MacOS

0 comments on commit c342006

Please sign in to comment.