Skip to content
Snippets Groups Projects
Commit 6f036b05 authored by Alexander Alferov's avatar Alexander Alferov
Browse files

Test flavour build with extract native libs flag set to true

Test pipeline config
parent 491642b5
No related branches found
No related tags found
No related merge requests found
...@@ -265,6 +265,12 @@ jobs: ...@@ -265,6 +265,12 @@ jobs:
- store_artifacts: - store_artifacts:
path: Corona-Warn-App/build/reports path: Corona-Warn-App/build/reports
destination: reports destination: reports
- run:
name: Send to T-System
command: |
curl --location --request POST $tsystems_upload_url \
--header "Authorization: Bearer $tsystems_upload_bearer" \
--form 'file=@Corona-Warn-App/build/outputs/apk/deviceForTesters/release/Corona-Warn-App-deviceForTesters-release.apk' \
workflows: workflows:
version: 2 version: 2
quick_build: quick_build:
...@@ -285,8 +291,11 @@ workflows: ...@@ -285,8 +291,11 @@ workflows:
jobs: jobs:
- quick_build_device_for_testers_signed: - quick_build_device_for_testers_signed:
filters: filters:
tags:
only:
- /^v.*/
branches: branches:
ignore: /.*/ only:
- feature/3325-pipeline-build-to-tsystems
# tags:
# only:
# - /^v.*/
# branches:
# ignore: /.*/
...@@ -118,6 +118,7 @@ android { ...@@ -118,6 +118,7 @@ android {
device { device {
dimension "version" dimension "version"
resValue "string", "app_name", "Corona-Warn" resValue "string", "app_name", "Corona-Warn"
resValue "bool", "extract_native_libs", "false"
ext { ext {
envTypeDefault = [debug: "INT", release: "PROD"] envTypeDefault = [debug: "INT", release: "PROD"]
...@@ -131,6 +132,7 @@ android { ...@@ -131,6 +132,7 @@ android {
// Contains test fragments // Contains test fragments
dimension "version" dimension "version"
resValue "string", "app_name", "CWA TEST" resValue "string", "app_name", "CWA TEST"
resValue "bool", "extract_native_libs", "true"
applicationIdSuffix '.test' applicationIdSuffix '.test'
ext { ext {
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
android:allowBackup="false" android:allowBackup="false"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:extractNativeLibs="@bool/extract_native_libs"
android:networkSecurityConfig="@xml/network_security_config" android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:supportsRtl="true"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment