Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b377c70
Codeq settings
mateeullahmalik Sep 23, 2025
6a225d3
Fix concurrent write panic in metrics
mateeullahmalik Sep 23, 2025
306d295
Enable Pprof
j-rafique Sep 24, 2025
bca91a1
Remove config
j-rafique Sep 24, 2025
e8e5e7c
Merge pull request #187 from LumeraProtocol/EnablePprof
j-rafique Sep 24, 2025
efbe176
Codec callback (#188)
mateeullahmalik Sep 24, 2025
74fb97e
Change test port
j-rafique Sep 24, 2025
cf7f877
Async events (#190)
mateeullahmalik Sep 24, 2025
1f524bf
Add profile script
j-rafique Sep 24, 2025
1310df6
Merge pull request #191 from LumeraProtocol/ProfileScript
j-rafique Sep 24, 2025
b123dce
Change test port
mateeullahmalik Sep 24, 2025
3c66950
Disable Metrics
j-rafique Sep 25, 2025
4dd2bca
Merge pull request #192 from LumeraProtocol/DisableMetric
j-rafique Sep 25, 2025
c53d7c3
Silence all logs
mateeullahmalik Sep 29, 2025
6bd2b9c
high-signal logs
mateeullahmalik Sep 30, 2025
8346283
Add datadog logs
mateeullahmalik Sep 30, 2025
0e35cf6
TxResponse
mateeullahmalik Sep 30, 2025
3d8386a
skip check for public field
mateeullahmalik Sep 30, 2025
d32a5c7
peers+balance (#196)
mateeullahmalik Sep 30, 2025
7b85f4d
Tx mode block
mateeullahmalik Oct 1, 2025
34dfc95
fix :tx Broadcst method cleanup
mateeullahmalik Oct 2, 2025
7bd1a03
Logs
mateeullahmalik Oct 2, 2025
ee927a0
High Signal Logs
mateeullahmalik Oct 2, 2025
18c2a70
enhance tracing
mateeullahmalik Oct 2, 2025
cae661d
Metrics Cleanup
mateeullahmalik Oct 3, 2025
57c92f5
Increase raptorq memory
mateeullahmalik Oct 3, 2025
6d3f03e
Add cascadekit; refactor services, e2e, docs
mateeullahmalik Oct 3, 2025
fa9195f
remove stake
mateeullahmalik Oct 3, 2025
3e13e1f
Use lume in genesis
mateeullahmalik Oct 3, 2025
4967020
fixes : sdk , format files
mateeullahmalik Oct 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build&release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ jobs:
echo "binary_name=supernode-linux-amd64" >> $GITHUB_OUTPUT

- name: Build Release Version
env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
DD_SITE: ${{ secrets.DD_SITE }}
run: |
mkdir -p release

Expand All @@ -94,7 +97,9 @@ jobs:
-ldflags="-s -w \
-X github.com/LumeraProtocol/supernode/v2/supernode/cmd.Version=${{ steps.vars.outputs.version }} \
-X github.com/LumeraProtocol/supernode/v2/supernode/cmd.GitCommit=${{ steps.vars.outputs.git_commit }} \
-X github.com/LumeraProtocol/supernode/v2/supernode/cmd.BuildTime=${{ steps.vars.outputs.build_time }}" \
-X github.com/LumeraProtocol/supernode/v2/supernode/cmd.BuildTime=${{ steps.vars.outputs.build_time }} \
-X github.com/LumeraProtocol/supernode/v2/pkg/logtrace.DDAPIKey=${DD_API_KEY} \
-X github.com/LumeraProtocol/supernode/v2/pkg/logtrace.DDSite=${DD_SITE}" \
-o release/supernode \
./supernode

Expand Down
12 changes: 7 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.PHONY: build build-release build-sncli build-sn-manager
.PHONY: install-lumera setup-supernodes system-test-setup
.PHONY: install-lumera setup-supernodes system-test-setup install-deps
.PHONY: gen-cascade gen-supernode
.PHONY: test-e2e test-unit test-integration test-system

Expand All @@ -11,7 +11,9 @@ BUILD_TIME ?= $(shell date -u '+%Y-%m-%d_%H:%M:%S')
# Linker flags for version information
LDFLAGS = -X github.com/LumeraProtocol/supernode/v2/supernode/cmd.Version=$(VERSION) \
-X github.com/LumeraProtocol/supernode/v2/supernode/cmd.GitCommit=$(GIT_COMMIT) \
-X github.com/LumeraProtocol/supernode/v2/supernode/cmd.BuildTime=$(BUILD_TIME)
-X github.com/LumeraProtocol/supernode/v2/supernode/cmd.BuildTime=$(BUILD_TIME) \
-X github.com/LumeraProtocol/supernode/v2/pkg/logtrace.DDAPIKey=$(DD_API_KEY) \
-X github.com/LumeraProtocol/supernode/v2/pkg/logtrace.DDSite=$(DD_SITE)

# Linker flags for sn-manager
SN_MANAGER_LDFLAGS = -X main.Version=$(VERSION) \
Expand Down Expand Up @@ -96,7 +98,7 @@ gen-supernode:
--grpc-gateway_out=gen \
--grpc-gateway_opt=paths=source_relative \
--openapiv2_out=gen \
proto/supernode/supernode.proto
proto/supernode/service.proto proto/supernode/status.proto

# Define the paths
SUPERNODE_SRC=supernode/main.go
Expand Down Expand Up @@ -140,9 +142,9 @@ test-e2e:
# Run cascade e2e tests only
test-cascade:
@echo "Running cascade e2e tests..."
@cd tests/system && go test -tags=system_test -v -run TestCascadeE2E .
@cd tests/system && go mod tidy && go test -tags=system_test -v -run TestCascadeE2E .

# Run sn-manager e2e tests only
test-sn-manager:
@echo "Running sn-manager e2e tests..."
@cd tests/system && go test -tags=system_test -v -run '^TestSNManager' .
@cd tests/system && go test -tags=system_test -v -run '^TestSNManager' .
191 changes: 0 additions & 191 deletions docs/cascade-performance.md

This file was deleted.

Loading