Skip to content

Add chopsticks workflow #4

Add chopsticks workflow

Add chopsticks workflow #4

Workflow file for this run

name: "Run Chopsticks"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
steps:
# - name: Cancel previous runs
# uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5 # v0.11.0
# with:
# access_token: ${{ github.token }}
- name: Install updates and protobuf-compiler
run: apt update && apt install --assume-yes cmake protobuf-compiler wget curl git python3 make build-essential
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: wasm32-unknown-unknown
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
target: wasm32-unknown-unknown
#
- name: Checkout
uses: actions/checkout@v2
## - name: Test all features
## run: cargo test --workspace --release --locked --features=runtime-benchmarks,runtime-metrics,try-runtime
## env:
## RUSTFLAGS: "-C debug-assertions -D warnings"
#
- name: download dummy wasms
run: mkdir -p target/release/wbuild/kusama-runtime/ && wget https://raw.githubusercontent.com/samelamin/runtimes/dummy_wasms/wasms/kusama_runtime.compact.compressed.wasm -O target/release/wbuild/kusama-runtime/kusama_runtime.compact.compressed.wasm ;mkdir -p target/release/wbuild/asset-hub-kusama-runtime/ && wget https://raw.githubusercontent.com/samelamin/runtimes/dummy_wasms/wasms/asset_hub_kusama_runtime.compact.compressed.wasm -O target/release/wbuild/asset-hub-kusama-runtime/asset_hub_kusama_runtime.compact.compressed.wasm;
- name: Install e2e tests repo
run: git clone https://github.com/AcalaNetwork/e2e-tests && yarn --cwd e2e-tests/ && yarn --cwd e2e-tests/ update-env
- name: Run tests
env:
KUSAMA_WASM: "../target/release/wbuild/kusama-runtime/kusama_runtime.compact.compressed.wasmm"
STATEMINE_WASM: "../target/release/wbuild/asset-hub-kusama-runtime/asset_hub_kusama_runtime.compact.compressed.wasmm"
run: find e2e-tests/tests/ -name '*.test.*' | xargs rm -rf && cp -r chopsticks/* e2e-tests/tests/ && yarn --cwd e2e-tests test