Skip to content

Commit

Permalink
Dusty release 1.8.0 (#270)
Browse files Browse the repository at this point in the history
* Update to latest frontier

* update operator-trading (#269)

Co-authored-by: Mario <mariovukelic@yahoo.com>

* Bump substrate to 3.0

* Bump substrate to 3.0

* Code style fixes

* Update to latest frontier

* Fix compilation

* Fix code style

* Fix all tests

* Compilation & small bug fixes

* [CI] bump rust version

* Cosmetic fixes

* [CI] added zlib into shell

Co-authored-by: Mario <mariovukelic@yahoo.com>
  • Loading branch information
akru and Maar-io authored Mar 3, 2021
1 parent 432d568 commit 3a649ad
Show file tree
Hide file tree
Showing 109 changed files with 2,993 additions and 18,842 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: 'nightly-2020-08-20'
rust-version: 'nightly-2020-12-29'
targets: 'wasm32-unknown-unknown'
- name: Checkout the source code
uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crates_frame.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: 'nightly-2020-08-20'
rust-version: 'nightly-2020-12-29'
targets: 'wasm32-unknown-unknown'
- name: Checkout the source code
uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: 'nightly-2020-08-20'
rust-version: 'nightly-2020-12-29'
targets: 'wasm32-unknown-unknown'
- name: Checkout the source code
uses: actions/checkout@master
Expand Down
32 changes: 3 additions & 29 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- name: Install LLVM (windows only)
if: runner.os == 'Windows'
run: choco install llvm

- uses: hecrj/setup-rust-action@v1
with:
rust-version: 'nightly-2020-08-20'
rust-version: 'nightly-2020-12-29'
targets: 'wasm32-unknown-unknown'

- name: Checkout the source code
Expand All @@ -26,38 +27,11 @@ jobs:
- name: Check targets are installed correctly
run: rustup target list --installed

- name: Install build tools
run: cargo install --git https://github.com/alexcrichton/wasm-gc --force

- name: Run all tests
run: cargo test --all

- name: Build optimized binary
run: cargo build --release --verbose

- name: Upload binary archive into IPFS
if: runner.os != 'Windows'
run: |
cd target/release
tar cfJ plasm-node-${{ matrix.os }}-x86_64.tar.xz plasm-node
curl "https://ipfs.infura.io:5001/api/v0/add" -F file=@plasm-node-${{ matrix.os }}-x86_64.tar.xz
- uses: actions/upload-artifact@master
if: runner.os != 'Windows'
with:
name: plasm-node-${{ matrix.os }}-x86_64.tar.xz
path: target/release/plasm-node-${{ matrix.os }}-x86_64.tar.xz

- name: Upload binary archive into IPFS (windows only)
if: runner.os == 'Windows'
run: |
cd target/release
tar czf plasm-node-${{ matrix.os }}-x86_64.tar.gz plasm-node.exe
curl "https://ipfs.infura.io:5001/api/v0/add" -F file=@plasm-node-${{ matrix.os }}-x86_64.tar.gz
- uses: actions/upload-artifact@master
if: runner.os == 'Windows'
with:
name: plasm-node-${{ matrix.os }}-x86_64.tar.gz
path: target/release/plasm-node-${{ matrix.os }}-x86_64.tar.gz
run: cargo build --release --locked

nix:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "vendor/frontier"]
path = vendor/frontier
url = https://github.com/staketechnologies/frontier.git
url = https://github.com/PlasmNetwork/frontier.git
Loading

0 comments on commit 3a649ad

Please sign in to comment.