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
5 changes: 2 additions & 3 deletions .github/workflows/dagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ jobs:
supernova:
name: supernova-ci
runs-on: ubuntu-latest
# runs-on: [ self-hosted, Linux, X64, dagger ]
strategy:
matrix:
env: [PACKAGE_DEPLOYMENT, REALM_DEPLOYMENT, REALM_CALL]
env: [PACKAGE_DEPLOYMENT] # TODO: REALM_DEPLOYMENT, REALM_CALL
max-parallel: 1

steps:
Expand All @@ -34,4 +33,4 @@ jobs:
version: ${{ steps.dagger_version.outputs.version }}
verb: call
module: ci/dagger/run-supernova/
args: run-stress-test --src-dir . --chain-id ${CHAIN_ID} --rpc-endpoint ${RPC_URL} --mode ${{ matrix.env }} --sub-accounts 2 --transactions 100
args: run-stress-test --src-dir . --chain-id ${CHAIN_ID} --rpc-endpoint ${RPC_URL} --mode ${{ matrix.env }} --sub-accounts 2
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v5

- name: Lint
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v8
with:
version: v1.64
version: v2.1
args: --timeout=5m
1 change: 1 addition & 0 deletions internal/collector/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ func (c *Collector) GetRunResult(
for {
// Check if all original transactions
// were processed
//nolint:staticcheck
if processed >= len(txHashes) {
break
}
Expand Down
Loading