Skip to content

Conversation

@jrainville
Copy link
Member

No description provided.

@jrainville jrainville requested a review from a team as a code owner December 11, 2025 18:45
@status-im-auto
Copy link
Member

status-im-auto commented Dec 11, 2025

Jenkins Builds

Click to see older builds (10)
Commit #️⃣ Finished (UTC) Duration Platform Result
✔️ 6656819 #1 2025-12-11 18:49:52 ~4 min linux/status-go 📦zip
6656819 #1 2025-12-11 18:49:57 ~4 min macos/nwaku 📄log
✔️ 6656819 #1 2025-12-11 18:50:18 ~4 min macos/status-go 📦zip
✔️ 6656819 #1 2025-12-11 18:53:47 ~8 min linux/nwaku 📦zip
✔️ 6656819 #1 2025-12-11 18:54:18 ~8 min windows/status-go 📦zip
6656819 #1 2025-12-11 19:01:37 ~15 min windows/nwaku 📄log
✖️ 6656819 #1 2025-12-11 19:05:31 ~19 min tests-rpc 📄log
✖️ 6656819 #1 2025-12-11 19:06:07 ~20 min tests-rpc 📄log
✖️ 6656819 #1 2025-12-11 19:14:50 ~28 min tests 📄log
✔️ 6656819 #1 2025-12-11 19:16:06 ~30 min tests 📄log
Commit #️⃣ Finished (UTC) Duration Platform Result
28aa992 #2 2026-01-06 15:53:00 ~27 sec macos/nwaku 📄log
28aa992 #2 2026-01-06 15:53:00 ~28 sec macos/status-go 📄log
28aa992 #2 2026-01-06 15:53:05 ~36 sec linux/nwaku 📄log
28aa992 #2 2026-01-06 15:53:05 ~38 sec linux/status-go 📄log
✖️ 28aa992 #2 2026-01-06 15:53:05 ~25 sec tests-rpc 📄log
✖️ 28aa992 #2 2026-01-06 15:53:06 ~24 sec tests-rpc 📄log
✖️ 28aa992 #2 2026-01-06 15:53:07 ~29 sec tests 📄log
✖️ 28aa992 #2 2026-01-06 15:53:11 ~28 sec tests 📄log
28aa992 #2 2026-01-06 15:53:32 ~47 sec windows/status-go 📄log
28aa992 #2 2026-01-06 15:53:43 ~58 sec windows/nwaku 📄log
✔️ a8d10ea #3 2026-01-06 16:33:10 ~3 min linux/status-go 📦zip
a8d10ea #3 2026-01-06 16:33:31 ~4 min macos/nwaku 📄log
✔️ a8d10ea #3 2026-01-06 16:33:52 ~4 min macos/status-go 📦zip
✔️ a8d10ea #3 2026-01-06 16:37:14 ~7 min linux/nwaku 📦zip
a8d10ea #3 2026-01-06 16:38:33 ~8 min windows/nwaku 📄log
✔️ a8d10ea #3 2026-01-06 16:39:18 ~9 min windows/status-go 📦zip
✔️ a8d10ea #3 2026-01-06 16:48:37 ~19 min tests-rpc 📄log
✔️ a8d10ea #3 2026-01-06 16:49:32 ~19 min tests-rpc 📄log
✔️ a8d10ea #3 2026-01-06 17:06:06 ~36 min tests 📄log
✔️ a8d10ea #3 2026-01-06 17:08:22 ~38 min tests 📄log

@codecov
Copy link

codecov bot commented Dec 11, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 60.41%. Comparing base (5398cd4) to head (a8d10ea).

Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #7199      +/-   ##
===========================================
- Coverage    60.49%   60.41%   -0.08%     
===========================================
  Files          815      815              
  Lines       113163   113163              
===========================================
- Hits         68454    68371      -83     
- Misses       37661    37737      +76     
- Partials      7048     7055       +7     
Flag Coverage Δ
functional 39.68% <ø> (-0.17%) ⬇️
unit 54.80% <ø> (-0.04%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.
see 36 files with indirect coverage changes

Copy link
Contributor

@Ivansete-status Ivansete-status left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for it! Just adding some nitpicks that I hope you find useful

Makefile Outdated
@echo "Building nim-sds for Android" $(LIBSDS)
$(MAKE) -C $(NIM_SDS_SOURCE_DIR) libsds-android ARCH=arm64 ANDROID_NDK_ROOT=$(ANDROID_NDK_ROOT) USE_SYSTEM_NIM=1 SHELL=/bin/bash
@if [ "$(ARCH)" != "arm64" ]; then SDSARCH=amd64; else SDSARCH=$(ARCH); fi; \
$(MAKE) -C $(NIM_SDS_SOURCE_DIR) libsds-android ARCH=$$SDSARCH ANDROID_NDK_ROOT=$(ANDROID_NDK_ROOT) USE_SYSTEM_NIM=1 SHELL=/bin/bash
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe? To keep consistency with others

Suggested change
$(MAKE) -C $(NIM_SDS_SOURCE_DIR) libsds-android ARCH=$$SDSARCH ANDROID_NDK_ROOT=$(ANDROID_NDK_ROOT) USE_SYSTEM_NIM=1 SHELL=/bin/bash
$(MAKE) -C $(NIM_SDS_SOURCE_DIR) libsds-android ARCH=$(SDSARCH) ANDROID_NDK_ROOT=$(ANDROID_NDK_ROOT) USE_SYSTEM_NIM=1 SHELL=/bin/bash

Makefile Outdated
build-libsds-android: clone-nim-sds
@echo "Building nim-sds for Android" $(LIBSDS)
$(MAKE) -C $(NIM_SDS_SOURCE_DIR) libsds-android ARCH=arm64 ANDROID_NDK_ROOT=$(ANDROID_NDK_ROOT) USE_SYSTEM_NIM=1 SHELL=/bin/bash
@if [ "$(ARCH)" != "arm64" ]; then SDSARCH=amd64; else SDSARCH=$(ARCH); fi; \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jrainville jrainville force-pushed the fix/sds-hardcoded-arch branch from 6656819 to 28aa992 Compare January 6, 2026 15:52
@jrainville jrainville force-pushed the fix/sds-hardcoded-arch branch from 28aa992 to a8d10ea Compare January 6, 2026 16:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants