Remove omnilock (#77) #553
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: Rust | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Update submodules | |
run: git submodule update --init | |
- name: Build contract | |
run: make all-via-docker | |
- name: Build test extensions | |
run: make -f tests/xudt_rce/extension_scripts.Makefile all-via-docker | |
- name: Run simulator tests | |
run: bash tests/validate_signature_rsa/run.sh | |
- name: Run tests | |
run: cargo test | |
- name: Run xudt tests | |
run: cd tests/xudt_rce_rust && cargo test | |
- name: Run xudt simulator tests | |
run: cd tests/xudt_rce && bash run.sh |