Page MenuHomeGitPull.it

Build 1004
FailedPublic

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

Properties

Drydock: Sign and Publish Builded APK Files

When
Completed at May 14 2025, 23:49 · Built for 13 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 5047 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

611112773903 res/ya.xml (OK - compressed)
611212774264 res/yd.png (OK)
611312786200 res/yg.9.png (OK)
611412786635 res/yj.xml (OK - compressed)
611512787032 res/yn.png (OK)
611612789516 res/z-.9.png (OK)
611712789780 res/z9.9.png (OK)
611812790240 res/zE.png (OK)
611912790604 res/zG.xml (OK - compressed)
612012790924 res/zR.png (OK)
612112793725 res/zR.xml (OK - compressed)
612212794216 res/zV.9.png (OK)
612312796719 res/zc.xml (OK - compressed)
612412797168 res/ze.png (OK)
612512805523 res/zp.xml (OK - compressed)
612612805781 res/zq.xml (OK - compressed)
612712806092 res/zr.png (OK)
612812808911 res/zs.xml (OK - compressed)
612912809183 res/zu.xml (OK - compressed)
613012810213 res/zv.xml (OK - compressed)
613112811489 res/zz.xml (OK - compressed)
613212811680 resources.arsc (OK)
6133Verification succesful
6134[INFO][2025-05-14 23:49:10] APK app-x86_64-gitpull-unsigned.apk: signing creating /home/www-data/reyboz.it/lab/builds/libre-busto/D192-app-x86_64-gitpull-unsigned-signed..apk...
6135[INFO][2025-05-14 23:49:12] APK app-x86_64-gitpull-unsigned.apk: signing creating /home/www-data/reyboz.it/lab/builds/libre-busto/D192-app-x86_64-gitpull-unsigned-signed..apk... signed!
6136DEBUG TELEGRAM CONTENT
6137⚙ Dear Android hackers, please review this promising patch:
6138https://gitpull.it/D192
6139
6140Here the related fresh test builds:
6141
6142[Download D192-app-arm64-v8a-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D192-app-arm64-v8a-gitpull-unsigned.apk)
6143
6144APK sha256: `02fab5690b2694a8ae54b10ec52adff4064f96d72291e92eaf680137d7863540`
6145[Download D192-app-armeabi-v7a-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D192-app-armeabi-v7a-gitpull-unsigned.apk)
6146
6147APK sha256: `784fff9f990617ab4bff567a5b26ec930d1eafe7e25c5710154126dbc5e9b3a2`
6148[Download D192-app-universal-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D192-app-universal-gitpull-unsigned.apk)
6149
6150APK sha256: `b84096372ef912bc5c12d25ad136d45716b8a03f520712c4b1657ab5bea3818c`
6151[Download D192-app-x86-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D192-app-x86-gitpull-unsigned.apk)
6152
6153APK sha256: `ad45aba51d8adb9344055b0b26c3f5427f54ea69c612e02830b7554b4aa02f0f`
6154[Download D192-app-x86_64-gitpull-unsigned.apk](https://lab.reyboz.it/builds/libre-busto/D192-app-x86_64-gitpull-unsigned.apk)
6155
6156APK sha256: `37db508eac57841b93041761fb633a29861cb6dbdc69f7d09d9e8112e1013d20`
6157Adding bipbop Comment to D192
6158[INFO][2025-05-14 23:49:12] Cleaning old artifacts
6159[INFO][2025-05-14 23:49:13] Done
6160

Drydock: Assemble debug APK

When
Completed at May 14 2025, 23:49 · Built for 1 m, 8 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 5046 (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 5045 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

63> Task :app:compileGitpullKotlin
64w: 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.
65w: 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.
66w: 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.
67w: 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.
68w: 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.
69w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:473:21 Condition is always 'true'.
70w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:538:33 Condition is always 'true'.
71w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:540:20 Condition is always 'true'.
72w: 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.
73w: 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.
74w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/ArrivalsFragment.kt:693:13 Condition is always 'false'.
75w: 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.
76w: 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.
77w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/fragments/LinesDetailFragment.kt:176:16 Condition is always 'false'.
78w: 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.
79w: 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.
80w: 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.
81w: 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.
82w: 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.
83w: 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.
84w: 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.
85w: 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.
86w: 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>?'.
87w: 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?>'.
88w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/viewmodels/ArrivalsViewModel.kt:124:17 Condition is always 'false'.
89w: file:///var/drydock/workingcopy-112/repo/libre-busto/app/src/main/java/it/reyboz/bustorino/viewmodels/ArrivalsViewModel.kt:143:13 Condition is always 'true'.
90w: 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.
91
92> Task :app:compileGitpullJavaWithJavac
93
94> Task :app:generateGitpullLintVitalReportModel
95> Task :app:dexBuilderGitpull
96> Task :app:processGitpullJavaRes
97> Task :app:mergeGitpullGlobalSynthetics
98> Task :app:mergeGitpullJavaResource
99> Task :app:mergeDexGitpull
100> Task :app:compileGitpullArtProfile
101> Task :app:packageGitpull
102> Task :app:createGitpullApkListingFileRedirect
103> Task :app:lintVitalAnalyzeGitpull
104> Task :app:lintVitalReportGitpull
105
106> Task :app:lintVitalGitpull
107
108> Task :app:assembleGitpull
109
110BUILD SUCCESSFUL in 1m 8s
11155 actionable tasks: 54 executed, 1 up-to-date
112

Drydock: Clean Gradle

When
Completed at May 14 2025, 23:47 · Built for 3 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 5043 (remote - stdout)
25 - 50 - 100 - Unlimited Lines

1Found 8.7 via distributionUrl
2Running /home/phabricator-android-builder/versions/8.7/bin/gradle clean
3> Task :app:clean
4
5BUILD SUCCESSFUL in 2s
61 actionable task: 1 executed
7

Lease BusTO Working Copy

When
Completed at May 14 2025, 23:47 · Built for 4 s
Status
Passed

Abort Older Builds

When
Completed at May 14 2025, 23:47 · Built instantly
Status
Passed