Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename test-zk-64.sh -> test-zkasm.sh #87

Merged
merged 1 commit into from
Nov 16, 2023
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
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ concurrency:
cancel-in-progress: true

jobs:
test_zkasm_64:
name: Test generated zkAsm on 64-bit zk processor
test_zkasm:
name: Test generated zkAsm on the ZK processor
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.8.0'
- run: ./ci/test-zk-64.sh --install-zkwasm --all
- run: ./ci/test-zkasm.sh --install-zkwasm --all

rustfmt:
name: Rustfmt
Expand Down Expand Up @@ -742,7 +742,7 @@ jobs:
name: Record the result of testing and building steps
runs-on: ubuntu-latest
needs:
- test_zkasm_64
- test_zkasm
- test
- build
- rustfmt
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions cranelift/codegen/src/isa/zkasm/docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ To test a `.zkasm` file:
3. Execute the following from the `wasmtime/` directory to test the zk-asm:

```bash
./ci/test-zk.sh --all
./ci/test-zkasm.sh --all
```

Or, for a specific file:

```bash
./ci/test-zk.sh <filename>
./ci/test-zkasm.sh <filename>
```

For example:

```bash
./ci/test-zk.sh zkasm_data/generated/add.zkasm
./ci/test-zkasm.sh zkasm_data/generated/add.zkasm
```

## Logging during Compilation
Expand Down