Skip to content
This repository was archived by the owner on Jul 4, 2022. It is now read-only.

Commit 500d96e

Browse files
authored
Merge pull request #158 from plugblockchain/chore/merge-2.0
Merge 2.0 upgrade branch
2 parents d37e88a + af94e97 commit 500d96e

File tree

1,397 files changed

+151935
-62681
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,397 files changed

+151935
-62681
lines changed

.circleci/config.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ commands:
1313
source ~/.cargo/env
1414
rustup install $RUST_VERSION
1515
rustup default $RUST_VERSION
16-
rustup install nightly-2020-05-14
17-
rustup target add wasm32-unknown-unknown --toolchain=nightly-2020-05-14
16+
rustup install nightly-2020-04-17
17+
rustup target add wasm32-unknown-unknown --toolchain=nightly-2020-04-17
1818
rustup target add x86_64-unknown-linux-musl --toolchain=$RUST_VERSION
1919
export RUSTC_WRAPPER="" # sccache is uninstalled at this point so it must be unset here for `wasm-gc` install
2020
command -v wasm-gc || cargo install --git https://github.com/alexcrichton/wasm-gc --force
@@ -55,14 +55,14 @@ commands:
5555
cargo-build-test:
5656
steps:
5757
- run:
58-
command: cargo test --no-run --release --workspace
58+
command: cargo test --no-run --release --all
5959
no_output_timeout: 30m
6060
cargo-run-test:
6161
steps:
6262
- run:
63-
command: |
63+
command:
6464
cargo --version
65-
cargo test --release --workspace
65+
cargo test --release --all
6666
no_output_timeout: 30m
6767
jobs:
6868
build:
@@ -76,7 +76,7 @@ jobs:
7676
resource_class: large
7777
environment:
7878
BASH_ENV: ~/.cargo/env
79-
RUST_VERSION: 1.44.1
79+
RUST_VERSION: 1.46.0
8080
RUSTC_WRAPPER: sccache
8181
SCCACHE_CACHE_SIZE: 10G
8282
steps:
@@ -92,7 +92,7 @@ jobs:
9292
resource_class: large
9393
environment:
9494
BASH_ENV: ~/.cargo/env
95-
RUST_VERSION: 1.44.1
95+
RUST_VERSION: 1.46.0
9696
RUSTC_WRAPPER: sccache
9797
SCCACHE_CACHE_SIZE: 10G
9898
steps:
@@ -123,10 +123,7 @@ jobs:
123123
else
124124
DOCKER_TAG="${CIRCLE_TAG}"
125125
fi
126-
docker build --pull \
127-
-t plugnet/plugblockchain:$DOCKER_TAG \
128-
-t plugnet/plugblockchain:latest \
129-
-f ./.plug/Dockerfile .
126+
docker build --pull -t plugnet/plugblockchain:$DOCKER_TAG -f ./.maintain/Dockerfile .
130127
docker push plugnet/plugblockchain:$DOCKER_TAG
131128
no_output_timeout: 60m
132129
workflows:

.editorconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,9 @@ indent_style=space
1414
indent_size=2
1515
tab_width=8
1616
end_of_line=lf
17+
18+
[*.sh]
19+
indent_style=space
20+
indent_size=2
21+
tab_width=8
22+
end_of_line=lf

.github/ISSUE_TEMPLATE/release.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Release failure for {{ ref }}
3+
---
4+
5+
Pipeline for release {{ ref }} failed. Please investigate.
6+
7+
If the pipeline has failed before pushing to crates.io, delete the release tag
8+
and fix the release as necessary, retagging after complete. If the pipeline has
9+
failed after pushing to crates.io, create a new tag incrementing the version.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ rls*.log
2121
.local
2222
**/hfuzz_target/
2323
**/hfuzz_workspace/
24-
.plug/data
24+
.cargo/

0 commit comments

Comments
 (0)