Upgrade wazero to v1.8.0 and add Close() method to the Calculator int… #45
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: test prover linux build with asm optimizations | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [ 1.18.x ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
if: success() | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: false | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Print CPU Info | |
run: cat /proc/cpuinfo | |
- name: Run tests | |
# rapidsnark_asm build tag enables asm optimizations | |
run: cd tests && go test -tags rapidsnark_asm -v -covermode=count | |