-
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.
* remove: unused doc * add: dev feature * fix: total supply * reorder: runtime * add: header-mmr rpc * bump: serde version * bump: common && substrate * update: runtime * remove: unused import * refactor: service * update: cli * one binary for all linux * ignore: .cargo-ok * update: docker * release: 0.6.6 * update: doc
- Loading branch information
Showing
21 changed files
with
1,510 additions
and
1,207 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
target |
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 |
---|---|---|
|
@@ -16,4 +16,5 @@ expand.rs | |
# Rust Things | ||
**/*.rs.bk | ||
**/target/ | ||
.cargo-ok | ||
Cargo.toml.bak |
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,13 +1,12 @@ | ||
FROM ubuntu:16.04 | ||
FROM centos:7 | ||
|
||
# only for x86_64 | ||
# for gernal linux | ||
|
||
# change mirrorlist | ||
RUN sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list && \ | ||
RUN curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo && yum makecache \ | ||
# update | ||
apt update && apt upgrade -y && apt install -y \ | ||
yum -y update && yum -y upgrade && yum -y install \ | ||
# tool | ||
git make \ | ||
# compiler | ||
gcc g++ \ | ||
clang llvm libclang-dev | ||
clang gcc gcc-c++ llvm |
Oops, something went wrong.