feat: add ocaml compatible nonce derivation function #726
Workflow file for this run
This file contains hidden or 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: Wasm | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build-wasm: | |
name: Build WebAssembly code | |
runs-on: ["ubuntu-latest"] | |
strategy: | |
matrix: | |
rust_toolchain_version: ["nightly-2024-09-05"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Use shared Rust toolchain setting up steps | |
uses: ./.github/actions/toolchain-shared | |
with: | |
rust_toolchain_version: ${{ matrix.rust_toolchain_version }} | |
targets: wasm32-unknown-unknown | |
- shell: bash | |
run: rustup component add rust-src | |
- name: Build the WebAssembly for the web | |
run: make build-web | |
- name: Build the WebAssembly for NodeJS | |
run: make build-nodejs |