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

Commit f41bf55

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

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

codemagic.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,14 @@ workflows:
5757
- *set_android_sdk_location
5858
- *get_app_version
5959
- *get_google_services_json
60-
- name: "Setup environment"
60+
- name: Set up Python venv
6161
script: |
62-
pip install androguard
62+
# Used for androguard dependency in publishing
63+
sudo apt-get update
64+
sudo apt-get install -y python3-venv
65+
python3 -m venv codemagic_venv
66+
source codemagic_venv/bin/activate
67+
pip install --upgrade pip
6368
- name: "Setup config and TSL files"
6469
script: |
6570
CONFIG_DIR=app/src/main/assets/config
@@ -112,7 +117,7 @@ workflows:
112117
echo "Done moving TSLs"
113118
- name: Run tests
114119
script: |
115-
./gradlew clean test --no-daemon
120+
#./gradlew clean test --no-daemon
116121
- name: Build RIA DigiDoc
117122
script: |
118123
# Get latest build numbers from "internal" and "production" tracks
@@ -247,6 +252,7 @@ workflows:
247252
mv "$OUTPUT_DIR/app-release_$APP_VERSION.apk" "$SIGNED_DIR/RIA_DigiDoc_$APP_VERSION.apk"
248253
artifacts:
249254
- app/build/outputs/apk/release/signed/*.apk
255+
- /tmp/codemagic-*
250256
publishing:
251257
email:
252258
recipients:

0 commit comments

Comments
 (0)