Merge pull request #1664 from 0chain/hotfix/repair-change #722
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark tests | |
on: | |
push: | |
branches: [ master, staging ] | |
jobs: | |
benchmark: | |
runs-on: [self-hosted, build] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup go 1.20 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' # The Go version to download (if necessary) and use. | |
# - name: Set GITHUB_ENV | |
# run: | | |
# echo "BRANCH=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV | |
# echo "GOSDK=$(echo $(dirname $(pwd)))/gosdk" >> $GITHUB_ENV | |
# echo "TAG=$(echo ${GITHUB_REF#refs/heads/} | sed 's/\//-/g' )" >> $GITHUB_ENV | |
- name: Run benchmark | |
run: go test -tags bn256 -benchmem -benchtime=5s -run="BenchmarkChunkedUpload*" -bench="BenchmarkChunkedUpload*" ./... | tee benchmark.txt | |
# Run `github-action-benchmark` action | |
# - name: Push benchmark report | |
# uses: cnlangzi/github-action-benchmark@v1 | |
# with: | |
# name: 0chain/gosdk Benchmark | |
# tool: 'go' | |
# benchmark-data-dir-path: ${{ env.TAG }}/bench | |
# output-file-path: benchmark.txt | |
# # Personal access token to deploy GitHub Pages branch | |
# github-token: ${{ secrets.GOSDK }} | |
# #github-token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
# # Push and deploy GitHub pages branch automatically | |
# auto-push: true |