Page MenuHomeGitPull.it

Build 1002
PassedPublic

You are viewing an older run of this build. View Current Build

Properties

Drydock: Sign and Publish Builded APK Files

When
Completed at May 15 2025, 08:37 · Built for 12 s
Status
Passed
Description

Source code:

https://gitpull.it/source/libre-busto-ci-cd/browse/master/bin/publish-latest-branch-build.sh

(ex P23)

This step will copy the built .apk to an indexed HTTP directory exposed by Apache, signing them:

https://lab.reyboz.it/builds/libre-busto/

1 empty log is hidden Show all logs.

Build Log 5059 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

611712789516 res/z-.9.png (OK)
611812789780 res/z9.9.png (OK)
611912790240 res/zE.png (OK)
612012790604 res/zG.xml (OK - compressed)
612112790924 res/zR.png (OK)
612212793725 res/zR.xml (OK - compressed)
612312794216 res/zV.9.png (OK)
612412796719 res/zc.xml (OK - compressed)
612512797168 res/ze.png (OK)
612612805523 res/zp.xml (OK - compressed)
612712805781 res/zq.xml (OK - compressed)
612812806092 res/zr.png (OK)
612912808911 res/zs.xml (OK - compressed)
613012809183 res/zu.xml (OK - compressed)
613112810213 res/zv.xml (OK - compressed)
613212811489 res/zz.xml (OK - compressed)
613312811680 resources.arsc (OK)
6134Verification succesful
6135[INFO][2025-05-15 08:37:08] APK app-x86_64-gitpull-unsigned.apk: signing creating /home/www-data/reyboz.it/lab/builds/libre-busto/D191-app-x86_64-gitpull-unsigned-signed..apk...
6136[INFO][2025-05-15 08:37:09] APK app-x86_64-gitpull-unsigned.apk: signing creating /home/www-data/reyboz.it/lab/builds/libre-busto/D191-app-x86_64-gitpull-unsigned-signed..apk... signed!
6137DEBUG TELEGRAM CONTENT
6138⚙ Dear Android hackers, please review this promising patch:
6139https://gitpull.it/D191
6140
6141Here the related fresh test builds:
6142
6143[Download D191-app-arm64-v8a-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D191-app-arm64-v8a-gitpull-unsigned.apk)
6144
6145APK sha256: `b6711137a611ae08a50de130dc805ca8ee3f519a64406b2f7bb2161854824cee`
6146
6147[Download D191-app-armeabi-v7a-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D191-app-armeabi-v7a-gitpull-unsigned.apk)
6148
6149APK sha256: `1ef73451003ed88d441461817bcf906742d3b1a7951126994563170dad53d408`
6150
6151[Download D191-app-universal-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D191-app-universal-gitpull-unsigned.apk)
6152
6153APK sha256: `7b7a1a18948725dd5032e10ca91cdf2733b5a4724255dd5324fd26afd2da298b`
6154
6155[Download D191-app-x86-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D191-app-x86-gitpull-unsigned.apk)
6156
6157APK sha256: `499acd2c40532d9c63649e4579c40ac2c74585ca59d08ebdd5a94b48a1277254`
6158
6159[Download D191-app-x86_64-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D191-app-x86_64-gitpull-unsigned.apk)
6160
6161APK sha256: `da916a969642aafc89f77c478b2c55c75ec5c61ac5d8d3d16715074a53cfbcb9`
6162
6163Adding bipbop Comment to D191
6164[INFO][2025-05-15 08:37:10] Cleaning old artifacts
6165[INFO][2025-05-15 08:37:10] Done
6166

Drydock: Assemble debug APK

When
Completed at May 15 2025, 08:36 · Built for 3 m, 13 s
Status
Passed
Description

This step will build an .apk using Gradle using this fantastic Docker image:

https://gitlab.com/fabmazz/android-fdroid-build-container/-/tree/ubuntu

Source code of this build step:

https://gitpull.it/source/libre-busto-ci-cd/browse/master/bin/fdroid-docker-builder.sh

TODO: Use the official image by Fabio Mazza, when the "DESIRED_UID" / "DESIRED_GID" features will be merged.

Build Log 5058 (remote - stderr)
25 - 50 - 100 - Unlimited Lines

1Note: Some input files use or override a deprecated API.
2Note: Recompile with -Xlint:deprecation for details.
3/var/drydock/workingcopy-112/repo/libre-busto/app/src/gitpull/AndroidManifest.xml:4: Error: Mock locations should only be requested in a test or debug-specific manifest file (typically src/debug/AndroidManifest.xml) [MockLocation]
4 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"/>
5 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6
7 Explanation for issues of type "MockLocation":
8 Using a mock location provider (by requiring the permission
9 android.permission.ACCESS_MOCK_LOCATION) should only be done in debug
10 builds (or from tests). In Gradle projects, that means you should only
11 request this permission in a test or debug source set specific manifest
12 file.
13
14 To fix this, create a new manifest file in the debug folder and move the
15 <uses-permission> element there. A typical path to a debug manifest
16 override file in a Gradle project is src/debug/AndroidManifest.xml.
17
18/var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/viewmodels/ArrivalsViewModel.kt:132: Error: Expected non-nullable value [NullSafeMutableLiveData from androidx.lifecycle]
19 palinaLiveData.postValue(palina)
20 ~~~~~~
21
22 Explanation for issues of type "NullSafeMutableLiveData":
23 This check ensures that LiveData values are not null when explicitly
24 declared as non-nullable.
25
26 Kotlin interoperability does not support enforcing explicit
27 null-safety when using generic Java type parameters. Since
28 LiveData is a Java class its value can always be null even
29 when its type is explicitly declared as non-nullable. This can lead
30 to runtime exceptions from reading a null LiveData value that is
31 assumed to be non-nullable.
32
33 Vendor: Android Open Source Project
34 Identifier: androidx.lifecycle
35 Feedback: https://issuetracker.google.com/issues/new?component=413132
36
372 errors, 0 warnings
38
39

Build Log 5057 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

62> Task :app:compileGitpullKotlin
63w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/ActivityAbout.kt:100:13 'fun onBackPressed(): Unit' is deprecated. Deprecated in Java.
64w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:147:21 'val loaderManager: LoaderManager' is deprecated. Deprecated in Java.
65w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:152:30 'val loaderManager: LoaderManager' is deprecated. Deprecated in Java.
66w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:324:29 'val loaderManager: LoaderManager' is deprecated. Deprecated in Java.
67w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:383:29 'val loaderManager: LoaderManager' is deprecated. Deprecated in Java.
68w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:473:21 Condition is always 'true'.
69w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:538:33 Condition is always 'true'.
70w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:540:20 Condition is always 'true'.
71w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:603:21 'val loaderManager: LoaderManager' is deprecated. Deprecated in Java.
72w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:652:66 'fun execute(vararg p0: Stop!): AsyncTask<Stop!, Void!, Boolean!>!' is deprecated. Deprecated in Java.
73w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:693:13 Condition is always 'false'.
74w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/IntroFragment.kt:172:43 'fun setColorFilter(p0: Int, p1: PorterDuff.Mode): Unit' is deprecated. Deprecated in Java.
75w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/IntroFragment.kt:213:24 'fun setColorFilter(p0: Int, p1: PorterDuff.Mode): Unit' is deprecated. Deprecated in Java.
76w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/LinesDetailFragment.kt:176:16 Condition is always 'false'.
77w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/MapLibreFragment.kt:1011:25 'fun requestSingleUpdate(p0: String, p1: LocationListener, p2: Looper?): Unit' is deprecated. Deprecated in Java.
78w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/middleware/AppLocationManager.kt:186:27 'class LocationProvider : Any' is deprecated. Deprecated in Java.
79w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/middleware/AppLocationManager.kt:186:44 'static field OUT_OF_SERVICE: Int' is deprecated. Deprecated in Java.
80w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/middleware/AppLocationManager.kt:186:72 'class LocationProvider : Any' is deprecated. Deprecated in Java.
81w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/middleware/AppLocationManager.kt:186:89 'static field TEMPORARILY_UNAVAILABLE: Int' is deprecated. Deprecated in Java.
82w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/middleware/AppLocationManager.kt:188:34 'class LocationProvider : Any' is deprecated. Deprecated in Java.
83w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/middleware/AppLocationManager.kt:188:51 'static field AVAILABLE: Int' is deprecated. Deprecated in Java.
84w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/middleware/AppLocationManager.kt:216:48 'class Criteria : Any, Parcelable' is deprecated. Deprecated in Java.
85w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/util/ImportExport.kt:53:40 Unchecked cast of 'kotlin.Any!' to 'kotlin.collections.Map<kotlin.String?, kotlin.Any>?'.
86w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/util/ImportExport.kt:83:56 Unchecked cast of 'kotlin.collections.Set<*>' to 'kotlin.collections.Set<kotlin.String?>'.
87w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/viewmodels/ArrivalsViewModel.kt:124:17 Condition is always 'false'.
88w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/viewmodels/ArrivalsViewModel.kt:143:13 Condition is always 'true'.
89w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/viewmodels/ArrivalsViewModel.kt:163:17 Expression under 'when' is never equal to null.
90
91> Task :app:compileGitpullJavaWithJavac
92
93> Task :app:generateGitpullLintVitalReportModel
94> Task :app:dexBuilderGitpull
95> Task :app:processGitpullJavaRes
96> Task :app:mergeGitpullGlobalSynthetics
97> Task :app:mergeGitpullJavaResource
98> Task :app:mergeDexGitpull
99> Task :app:compileGitpullArtProfile
100> Task :app:packageGitpull
101> Task :app:createGitpullApkListingFileRedirect
102> Task :app:lintVitalAnalyzeGitpull
103> Task :app:lintVitalReportGitpull
104
105> Task :app:lintVitalGitpull
106
107> Task :app:assembleGitpull
108
109BUILD SUCCESSFUL in 3m 12s
11055 actionable tasks: 54 executed, 1 up-to-date
111

Drydock: Clean Gradle

When
Completed at May 15 2025, 08:33 · Built for 24 s
Status
Passed
This build step has since been deleted on the build plan. Some information may be omitted.
1 empty log is hidden Show all logs.

Build Log 5055 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

1Found 8.7 via distributionUrl
2Running /home/phabricator-android-builder/versions/8.7/bin/gradle clean
3Starting a Gradle Daemon, 1 incompatible Daemon could not be reused, use --status for details
4> Task :app:clean
5
6BUILD SUCCESSFUL in 23s
71 actionable task: 1 executed
8

Lease BusTO Working Copy

When
Completed at May 15 2025, 08:33 · Built for 5 s
Status
Passed

Abort Older Builds

When
Completed at May 15 2025, 08:33 · Built instantly
Status
Passed