Skip to content

Commit

Permalink
Release 0.6.4 (#485)
Browse files Browse the repository at this point in the history
* 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
AurevoirXavier authored Aug 5, 2020
1 parent fde4b48 commit f63fdc4
Show file tree
Hide file tree
Showing 29 changed files with 1,518 additions and 2,350 deletions.
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Cross Compile Things
osxcross
darwin-x86_64
darwin-x86_64.tar.gz
linux-x86_64
linux-x86_64.tar.gz
windows-x86_64
windows-x86_64.tar.gz
wasm

# IDE Things
.idea
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions .maintain/docker/Dockerfile.arm-unknown-linux-gnueabihf
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
3 changes: 3 additions & 0 deletions .maintain/docker/Dockerfile.x86_64-unknown-linux-gnu
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
20 changes: 0 additions & 20 deletions .maintain/utility/clean-offchain-builds.py

This file was deleted.

29 changes: 14 additions & 15 deletions .travis.yml
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
Loading

0 comments on commit f63fdc4

Please sign in to comment.