Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.

Commit 12be608

Browse files
committed
Update codemagic.yaml
1 parent 515d978 commit 12be608

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

codemagic.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,13 @@ workflows:
5757
- *set_android_sdk_location
5858
- *get_app_version
5959
- *get_google_services_json
60-
- name: "Setup environment"
60+
- name: Install Androguard using Python 3.9
6161
script: |
62-
pip install androguard
62+
sudo apt-get update
63+
sudo apt-get install -y python3.9 python3.9-distutils curl
64+
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.9
65+
python3.9 -m pip install --user --force-reinstall androguard
66+
echo "Androguard installed for Python 3.9"
6367
- name: "Setup config and TSL files"
6468
script: |
6569
CONFIG_DIR=app/src/main/assets/config
@@ -112,7 +116,7 @@ workflows:
112116
echo "Done moving TSLs"
113117
- name: Run tests
114118
script: |
115-
./gradlew clean test --no-daemon
119+
#./gradlew clean test --no-daemon
116120
- name: Build RIA DigiDoc
117121
script: |
118122
# Get latest build numbers from "internal" and "production" tracks
@@ -247,6 +251,7 @@ workflows:
247251
mv "$OUTPUT_DIR/app-release_$APP_VERSION.apk" "$SIGNED_DIR/RIA_DigiDoc_$APP_VERSION.apk"
248252
artifacts:
249253
- app/build/outputs/apk/release/signed/*.apk
254+
- /tmp/codemagic-*
250255
publishing:
251256
email:
252257
recipients:

0 commit comments

Comments
 (0)