try to fix Unknown opcode 192 (#29) #82
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: Cargo-liquid Github Actions | |
on: | |
push: | |
pull_request: | |
release: | |
types: [published, created, edited] | |
jobs: | |
win_test: | |
name: win_test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2019] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 5 | |
- name: install rust nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-02-25 | |
components: rustc-dev, rust-src, llvm-tools-preview | |
- name: install cargo-liquid | |
run: cargo install --path . --force | |
- name: install wasm-opt | |
run: cargo install wasm-opt --force | |
- name: compile test contract | |
run: cd .\tests\conflict_analysis_test\contract && cargo liquid build | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
architecture: 'x64' | |
#- name: verify conflict analysis result | |
# run: cd .\tests\conflict_analysis_test && python .\verify_conflict.py |