Skip to content

feat: add ocaml compatible nonce derivation function #726

feat: add ocaml compatible nonce derivation function

feat: add ocaml compatible nonce derivation function #726

Workflow file for this run

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