-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update: bump substrate version * update: bump all version * clean: runtime * clean: command * update: rpc * update: common runtime * update: crab runtime * remove: unused feature * update: new ethereum backing * update: types * temp: dependencies * update: primitives * update: service * update: cli * add: cross compile thing * remove: unused utilities * fix: compile * update: toolchain * update: dependencies * remove: unused pallet * update: dependencies * support: compile for arm
- Loading branch information
1 parent
fde4b48
commit f63fdc4
Showing
29 changed files
with
1,518 additions
and
2,350 deletions.
There are no files selected for viewing
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM rustembedded/cross:arm-unknown-linux-gnueabihf | ||
|
||
RUN apt update && apt upgrade -y && apt install -y clang llvm libclang-dev |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM rustembedded/cross:x86_64-unknown-linux-gnu | ||
|
||
RUN apt update && apt upgrade -y && apt install -y clang llvm libclang-dev |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,38 @@ | ||
language: rust | ||
rust: nightly-2020-05-14 | ||
rust: nightly | ||
|
||
branches: | ||
only: | ||
- master | ||
- develop | ||
only: | ||
- master | ||
- develop | ||
|
||
env: | ||
global: | ||
- RUST_BACKTRACE=1 | ||
global: | ||
- RUST_BACKTRACE=1 | ||
|
||
before_install: | ||
# Check how much space we've got on this machine. | ||
- df -h | ||
- rustup target add wasm32-unknown-unknown --toolchain nightly-2020-05-14 | ||
|
||
# Check how much space we've got on this machine. | ||
- df -h | ||
- rustup target add wasm32-unknown-unknown --toolchain nightly | ||
|
||
jobs: | ||
include: | ||
- stage: Check & Prepare | ||
script: .maintain/ci/fmt_script.sh | ||
|
||
- stage: Build | ||
env: RUST_TOOLCHAIN=nightly-2020-05-14 TARGET=native | ||
env: RUST_TOOLCHAIN=nightly TARGET=native | ||
script: .maintain/ci/build_script.sh | ||
|
||
- stage: Build | ||
env: RUST_TOOLCHAIN=nightly-2020-05-14 TARGET=wasm | ||
env: RUST_TOOLCHAIN=nightly TARGET=wasm | ||
script: .maintain/ci/build_script.sh | ||
|
||
# over the time limitation, so we comment this | ||
# - stage: Overall Test | ||
# env: RUST_TOOLCHAIN=nightly-2020-05-14 TARGET=native | ||
# env: RUST_TOOLCHAIN=nightly TARGET=native | ||
# script: .maintain/ci/test_script.sh | ||
|
||
after_script: | ||
# Check how much free disk space left after the build | ||
- df -h | ||
# Check how much free disk space left after the build | ||
- df -h |
Oops, something went wrong.