Conversation
|
| Branch | mo/chore/update-kotliun |
| Testbed | ubuntu-latest |
⚠️ WARNING: No Threshold found!Without a Threshold, no Alerts will ever be generated.
Click here to create a new Threshold
For more information, see the Threshold documentation.
To only post results if a Threshold exists, set the--ci-only-thresholdsflag.
Click to view all benchmark results
| Benchmark | Latency | microseconds (µs) |
|---|---|---|
| com.wire.kalium.benchmarks.logic.CoreLogicBenchmark.createObjectInFiles | 📈 view plot | 717.79 µs |
| com.wire.kalium.benchmarks.logic.CoreLogicBenchmark.createObjectInMemory | 📈 view plot | 354,081.66 µs |
| com.wire.kalium.benchmarks.persistence.MessagesNoPragmaTuneBenchmark.messageInsertionBenchmark | 📈 view plot | 1,348,036.51 µs |
| com.wire.kalium.benchmarks.persistence.MessagesNoPragmaTuneBenchmark.queryMessagesBenchmark | 📈 view plot | 21,207.60 µs |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## develop #3846 +/- ##
========================================
Coverage 59.58% 59.58%
========================================
Files 1899 1900 +1
Lines 59332 59343 +11
Branches 6429 6426 -3
========================================
+ Hits 35352 35361 +9
- Misses 21019 21023 +4
+ Partials 2961 2959 -2
... and 10 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
…ate testing configurations
| val affectedModules = readAffectedModules() | ||
| val missingAffectedModulesData = affectedModules == null | ||
| val runAllTests = hasToRunAllTests() || missingAffectedModulesData | ||
|
|
||
| if (!hasToRunAllTests() && (affectedModules.isEmpty() || affectedModules.first().isEmpty())) { | ||
| if (!runAllTests && affectedModules.orEmpty().isEmpty()) { | ||
| println("\uD83E\uDD8B It is not necessary to run any test, ending here to free up some resources.") | ||
| return | ||
| } | ||
|
|
||
| executeTask(affectedModules) | ||
| executeTask( | ||
| affectedModules = affectedModules.orEmpty(), | ||
| runAllTests = runAllTests, |
There was a problem hiding this comment.
the dag-command is not supported by Gradle 9 so here is a task that does more or less the same
# Conflicts: # logic/src/commonMain/kotlin/com/wire/kalium/logic/featureFlags/KaliumConfigs.kt
|



https://wearezeta.atlassian.net/browse/WPB-20393
PR Submission Checklist for internal contributors
The PR Title
SQPIT-764The PR Description
What's new in this PR?
Issues
update kotlin to 2.3.0 and related libs
Needs releases with:
Testing
Test Coverage (Optional)
How to Test
Briefly describe how this change was tested and if applicable the exact steps taken to verify that it works as expected.
Notes (Optional)
Specify here any other facts that you think are important for this issue.
Attachments (Optional)
Attachments like images, videos, etc. (drag and drop in the text box)
PR Post Submission Checklist for internal contributors (Optional)
PR Post Merge Checklist for internal contributors
References
feat(conversation-list): Sort conversations by most emojis in the title #SQPIT-764.