Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/cre-soak-memory-leak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
uses: actions/upload-artifact@v7
with:
name: alloc.pprof
path: alloc.pprof
path: system-tests/tests/soak/cre/alloc.pprof
retention-days: 7

- name: Upload Docker logs
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/legacy-system-tests-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,3 +353,11 @@ jobs:
name: container-logs-${{ matrix.logs_archive_name }}
path: devenv/tests/${{ matrix.tests_dir }}/logs
retention-days: 3

- name: Upload DF1 soak alloc.pprof
if: always()
uses: actions/upload-artifact@v7
with:
name: alloc.pprof
path: devenv/tests/${{ matrix.tests_dir }}/alloc.pprof
retention-days: 7
2 changes: 1 addition & 1 deletion core/scripts/cre/environment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1762,7 +1762,7 @@ TraceSampleRatio = 1.0 # 100% sampling - adjust for production
DebugMode = true # WARNING: Not suitable for production due to overhead

[Pyroscope]
ServerAddress = 'http://host.docker.internal:4040'
ServerAddress = 'http://pyroscope:4040'
LinkTracesToProfiles = true # Enables traces-to-profiles in Grafana
```

Expand Down
2 changes: 1 addition & 1 deletion core/scripts/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ require (
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20260119171452-39c98c3b33cd
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260326111235-8c09d1a4491f
github.com/smartcontractkit/chainlink-protos/job-distributor v0.18.0
github.com/smartcontractkit/chainlink-testing-framework/framework v0.15.9-0.20260330164022-15e89dd1431f
github.com/smartcontractkit/chainlink-testing-framework/framework v0.15.12
github.com/smartcontractkit/chainlink-testing-framework/framework/components/dockercompose v0.1.20
github.com/smartcontractkit/chainlink-testing-framework/lib v1.54.5
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.5
Expand Down
4 changes: 2 additions & 2 deletions core/scripts/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion devenv/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ require (
github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260318010722-59d4165024f1
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20251211123524-f0c4fe7cfc0a
github.com/smartcontractkit/chainlink-protos/job-distributor v0.12.0
github.com/smartcontractkit/chainlink-testing-framework/framework v0.15.8
github.com/smartcontractkit/chainlink-testing-framework/framework v0.15.12
github.com/smartcontractkit/chainlink-testing-framework/framework/components/fake v0.14.9
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.5
github.com/smartcontractkit/chainlink-testing-framework/wasp v1.51.2
Expand Down
4 changes: 2 additions & 2 deletions devenv/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion devenv/products/cl_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ JSONConsole = true
Level = 'debug'
[Pyroscope]
ServerAddress = 'http://host.docker.internal:4040'
ServerAddress = 'http://pyroscope:4040'
Environment = 'local'
[WebServer]
Expand Down
2 changes: 1 addition & 1 deletion devenv/products/ocr2/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ JSONConsole = true
Level = 'debug'
[Pyroscope]
ServerAddress = 'http://host.docker.internal:4040'
ServerAddress = 'http://pyroscope:4040'
Environment = 'local'
[WebServer]
Expand Down
Loading