adding iOS build debug stage for testing.

This commit is contained in:
Lucas Oskorep
2022-08-28 12:56:34 -04:00
parent 0cdc52dfca
commit c3420067e0
+22 -3
View File
@@ -23,24 +23,43 @@ unit-tests:
- MacOS - MacOS
build-debug: build-android-debug:
stage: build stage: build
only: only:
- branches - branches
script: script:
- sh install_tflite.sh -d - sh install_tflite.sh -d
- flutter build appbundle --debug - flutter build appbundle --debug
- flutter build appbundle --debug
artifacts: artifacts:
name: android-debug-abb name: android-debug
paths: paths:
- build/app/outputs/bundle/debug/app-debug.aab - build/app/outputs/bundle/debug/app-debug.aab
- build/app/outputs/flutter-apk/app-release.apk
tags: tags:
- MacOS - MacOS
deploy-job:
deploy-android-job:
stage: deploy stage: deploy
script: script:
- echo "Deploying application..." - echo "Deploying application..."
- echo "Application successfully deployed. (JK gotta implement this sometime)" - echo "Application successfully deployed. (JK gotta implement this sometime)"
tags: 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