Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bane authored Mar 14, 2024
2 parents 6501516 + eda36ff commit 23c746e
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
- name: Lint Failed
if: failure()
id: lint_failure
run: echo "lint_output=false" >> $GITHUB_OUTPUT
run: echo "lint_output=false" >> $GITHUB_OUTPUT
2 changes: 1 addition & 1 deletion .github/workflows/load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,4 +255,4 @@ jobs:
mode: stop
label: ${{ needs.load_test_runner.outputs.load_test_runner_label }}
ec2-instance-id: ${{ needs.load_test_runner.outputs.load_test_runner_instance_id }}
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ jobs:
gas_avg: ${{ needs.load_test_multiple_erc20.outputs.gas_avg }}
gas_max: ${{ needs.load_test_multiple_erc20.outputs.gas_max }}
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
2 changes: 1 addition & 1 deletion .github/workflows/notification-deploy-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ jobs:
]
}
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/notification-destroy-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ jobs:
]
}
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/notification-load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ jobs:
]
}
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/notification-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,4 @@ jobs:
]
}
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
- name: Run Go Test Failed
if: failure()
id: run_tests_failure
run: echo "test_output=false" >> $GITHUB_OUTPUT
run: echo "test_output=false" >> $GITHUB_OUTPUT
1 change: 0 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,3 @@ docker_manifests:
- DOCKERHUB_ORGANIZATION/{{ .ProjectName }}:{{ .Version }}-amd64
- DOCKERHUB_ORGANIZATION/{{ .ProjectName }}:{{ .Version }}-arm64
skip_push: auto

2 changes: 1 addition & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY blade /usr/local/bin/
EXPOSE 8545 9632 1478

RUN addgroup -S blade-group \
&& adduser -S blade -G blade-group
&& adduser -S -u 1001 blade -G blade-group

USER blade

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

.
2 changes: 1 addition & 1 deletion loadtest/scenarios/multiple_EOA.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ export function handleSummary(data) {
'stdout': textSummary(data, { indent: ' ', enableColors: true }), // Show the text summary to stdout...
'summary.json': JSON.stringify(data),
};
}
}
2 changes: 1 addition & 1 deletion loadtest/scenarios/multiple_ERC20.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ export function handleSummary(data) {
'stdout': textSummary(data, { indent: ' ', enableColors: true }), // Show the text summary to stdout...
'summary.json': JSON.stringify(data),
};
}
}

0 comments on commit 23c746e

Please sign in to comment.