[PR #4816] [CLOSED] Test ldflags #21324

Open
opened 2026-08-05 05:08:21 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/4816
Author: @pappz
Created: 11/19/2025
Status: Closed

Base: mainHead: test-ldflags


📝 Commits (10+)

📊 Changes

55 files changed (+3405 additions, -1262 deletions)

View changed files

📝 .github/workflows/wasm-build-validation.yml (+1 -1)
📝 client/cmd/debug.go (+1 -28)
📝 client/cmd/status.go (+1 -1)
📝 client/cmd/testutil_test.go (+4 -2)
📝 client/cmd/up.go (+1 -1)
📝 client/embed/embed.go (+2 -1)
📝 client/internal/connect.go (+12 -10)
📝 client/internal/debug/debug.go (+26 -19)
client/internal/debug/upload.go (+101 -0)
📝 client/internal/debug/upload_test.go (+2 -2)
📝 client/internal/engine.go (+109 -22)
📝 client/internal/engine_test.go (+16 -22)
client/jobexec/executor.go (+66 -0)
📝 client/proto/daemon.pb.go (+3 -12)
📝 client/proto/daemon.proto (+0 -1)
📝 client/server/debug.go (+2 -97)
📝 client/server/server.go (+4 -95)
📝 client/server/server_test.go (+4 -2)
📝 client/status/status.go (+95 -5)
📝 client/status/status_test.go (+1 -1)

...and 35 more files

📄 Description

Describe your changes

Stack

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)

By submitting this pull request, you confirm that you have read and agree to the terms of the Contributor License Agreement.

Documentation

Select exactly one:

  • I added/updated documentation for this change
  • Documentation is not needed for this change (explain why)

Docs PR URL (required if "docs added" is checked)

Paste the PR link from https://github.com/netbirdio/docs here:

https://github.com/netbirdio/docs/pull/__


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/4816 **Author:** [@pappz](https://github.com/pappz) **Created:** 11/19/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `test-ldflags` --- ### 📝 Commits (10+) - [`cc595da`](https://github.com/netbirdio/netbird/commit/cc595da1ad47d66f5591fe67162ce957b1092000) [management/client] create job channel between management and client (#4367) - [`17a2af9`](https://github.com/netbirdio/netbird/commit/17a2af96eaf729f7cc0319d5769fc79fa3fd6f2f) implement remote debug api (#4418) - [`d01c3d5`](https://github.com/netbirdio/netbird/commit/d01c3d501153654474b36ddb147ba81445022402) [management/client] Integrate Job API with Job Stream and Client Engine (#4428) - [`bdae55a`](https://github.com/netbirdio/netbird/commit/bdae55ab797b12b7b0e561f817131f1220622470) update yml for job (#4532) - [`5a12c5d`](https://github.com/netbirdio/netbird/commit/5a12c5d3455624b33960085d87c84074ad4446d2) fix everything - [`60c5782`](https://github.com/netbirdio/netbird/commit/60c5782905fffe5856f4d027fabf4ee008ae1fa7) fix other lint issue - [`7a95bf5`](https://github.com/netbirdio/netbird/commit/7a95bf5652e5093891966161fa51ed1bba44aa52) fix bug with missing logs file - [`23f9dd0`](https://github.com/netbirdio/netbird/commit/23f9dd04b8613e7ad65f49bced50e4919e8eabfd) clean up - [`e570570`](https://github.com/netbirdio/netbird/commit/e570570fe502054e1c90957b821b4190d61f776a) add some info level log - [`0e9438d`](https://github.com/netbirdio/netbird/commit/0e9438d6586507519994db588eec6c468253905a) fix lint ### 📊 Changes **55 files changed** (+3405 additions, -1262 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/wasm-build-validation.yml` (+1 -1) 📝 `client/cmd/debug.go` (+1 -28) 📝 `client/cmd/status.go` (+1 -1) 📝 `client/cmd/testutil_test.go` (+4 -2) 📝 `client/cmd/up.go` (+1 -1) 📝 `client/embed/embed.go` (+2 -1) 📝 `client/internal/connect.go` (+12 -10) 📝 `client/internal/debug/debug.go` (+26 -19) ➕ `client/internal/debug/upload.go` (+101 -0) 📝 `client/internal/debug/upload_test.go` (+2 -2) 📝 `client/internal/engine.go` (+109 -22) 📝 `client/internal/engine_test.go` (+16 -22) ➕ `client/jobexec/executor.go` (+66 -0) 📝 `client/proto/daemon.pb.go` (+3 -12) 📝 `client/proto/daemon.proto` (+0 -1) 📝 `client/server/debug.go` (+2 -97) 📝 `client/server/server.go` (+4 -95) 📝 `client/server/server_test.go` (+4 -2) 📝 `client/status/status.go` (+95 -5) 📝 `client/status/status_test.go` (+1 -1) _...and 35 more files_ </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ## Stack <!-- branch-stack --> ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [ ] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) > By submitting this pull request, you confirm that you have read and agree to the terms of the [Contributor License Agreement](https://github.com/netbirdio/netbird/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT.md). ## Documentation Select exactly one: - [ ] I added/updated documentation for this change - [ ] Documentation is **not needed** for this change (explain why) ### Docs PR URL (required if "docs added" is checked) Paste the PR link from https://github.com/netbirdio/docs here: https://github.com/netbirdio/docs/pull/__ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2026-08-05 05:08:21 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#21324