Skip to content

Commit

Permalink
Fix CI build by temporarily remove RPC tests (polkadot-evm#6)
Browse files Browse the repository at this point in the history
* Fix CI build by temporarily remove RPC tests

* Update substrate head

* Update cargo lock

* Use specific nightly version in init.sh

* Specify nightly version for wasm32 target

* Update substrate pin

* Print out cargo and rustc version in CI init

* Set env WASM_BUILD_TOOLCHAIN in CI directly

* Update cargo lock

* Fix env format in Github Actions

* Fix runtime compile
  • Loading branch information
sorpaas authored May 31, 2020
1 parent 43a2a9f commit 85f76c6
Show file tree
Hide file tree
Showing 6 changed files with 295 additions and 312 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ jobs:
- name: Submodules
run: git submodule update --init --recursive
- name: Init
run: scripts/init.sh
run: |
scripts/init.sh
cargo --version
rustc --version
cargo +$WASM_BUILD_TOOLCHAIN --version
rustc +$WASM_BUILD_TOOLCHAIN --version
env:
WASM_BUILD_TOOLCHAIN: nightly-2020-05-14
- name: Build
run: cargo build --verbose --all
- name: Run tests
Expand Down
Loading

0 comments on commit 85f76c6

Please sign in to comment.