feat!: Address agnostic p2p #4761
Workflow file for this run
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: I2::Dev::Wasm | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- '.github/workflows/iroha2-dev-pr-wasm.yaml' | |
- 'crates/iroha_data_model/**.rs' | |
- 'crates/iroha_data_model/**.yml' | |
- 'crates/iroha_data_model/**.json' | |
- 'crates/iroha_data_model/**.toml' | |
- 'crates/iroha_crypto/**.rs' | |
- 'crates/iroha_crypto/**.yml' | |
- 'crates/iroha_crypto/**.json' | |
- 'crates/iroha_crypto/**.toml' | |
- 'crates/iroha_smart_contract/**.rs' | |
- 'crates/iroha_smart_contract/**.yml' | |
- 'crates/iroha_smart_contract/**.json' | |
- 'crates/iroha_smart_contract/**.toml' | |
- 'crates/iroha_executor/**.rs' | |
- 'crates/iroha_executor/**.yml' | |
- 'crates/iroha_executor/**.json' | |
- 'crates/iroha_executor/**.toml' | |
- 'crates/iroha_trigger/**.rs' | |
- 'crates/iroha_trigger/**.yml' | |
- 'crates/iroha_trigger/**.json' | |
- 'crates/iroha_trigger/**.toml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
DOCKER_COMPOSE_PATH: defaults | |
jobs: | |
build_executor: | |
runs-on: ubuntu-latest | |
container: | |
image: hyperledger/iroha2-ci:nightly-2024-09-09 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build iroha executor | |
run: mold --run cargo run --bin iroha_wasm_builder -- build ./wasm_samples/default_executor --optimize --out-file ${{ env.DOCKER_COMPOSE_PATH }}/executor.wasm | |
- name: Upload executor to reuse in other jobs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: executor.wasm | |
path: ${{ env.DOCKER_COMPOSE_PATH }}/executor.wasm | |
retention-days: 1 | |
tests: | |
runs-on: ubuntu-latest | |
container: | |
image: hyperledger/iroha2-ci:nightly-2024-09-09 | |
needs: build_executor | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download executor.wasm | |
uses: actions/download-artifact@v4 | |
with: | |
name: executor.wasm | |
path: ${{ env.DOCKER_COMPOSE_PATH }} | |
- name: Install iroha_wasm_test_runner | |
run: which iroha_wasm_test_runner || cargo install --path crates/iroha_wasm_test_runner | |
- name: Run smart contract tests on WebAssembly VM | |
working-directory: crates/iroha_smart_contract | |
run: mold --run cargo test -p iroha_smart_contract -p iroha_smart_contract_utils --release --tests --target wasm32-unknown-unknown --no-fail-fast --quiet |