Skip to content

Commit

Permalink
Merge pull request #87 from near/testing
Browse files Browse the repository at this point in the history
Rename test-zk-64.sh -> test-zkasm.sh
  • Loading branch information
aborg-dev authored Nov 16, 2023
2 parents 2feb144 + 7272f95 commit c37d87b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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

0 comments on commit c37d87b

Please sign in to comment.