You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/codemagic.yaml

41 lines
1.2 KiB
YAML

workflows:
android:
name: build, test & publish Android version
max_build_duration: 30
instance_type: mac_mini_m1
working_directory: client/mobile
cache:
cache_paths:
- $CM_BUILD_DIR/node_modules
scripts:
- name: Install npm dependencies
script: |
yarn
- name: Set Android SDK location
script: |
echo "sdk.dir=$ANDROID_SDK_ROOT" > "./android/local.properties"
- name: Build Android release
working_directory: client/mobile/android
script: |
UPDATED_BUILD_NUMBER=$BUILD_NUMBER
./gradlew assembleRelease \
-PversionCode=$UPDATED_BUILD_NUMBER \
-PversionName=1.0.$UPDATED_BUILD_NUMBER
artifacts:
- android/app/build/outputs/**/**/*.apk
publishing:
email:
recipients:
- moonrailgun@gmail.com
scripts:
- name: Notify artifact URL to Tailchat
script: |
node client/mobile/scripts/notify-links.js
# ios:
# name: build, test & publish iOS version
# instance_type: mac_pro
# working_directory: client/mobile
# scripts:
# - ...