Skip to content

Commit 5022da0

Browse files
authored
Integrate async AVM, introduce user-defined callbacks (#1209)
1 parent 7b7049c commit 5022da0

File tree

115 files changed

+4263
-3492
lines changed

Some content is hidden

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

115 files changed

+4263
-3492
lines changed

.circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
keys:
2323
- fluence05-{{ checksum "Cargo.lock" }}
2424
- run: |
25-
rustup toolchain install nightly-2021-06-14-x86_64-unknown-linux-gnu
26-
rustup override set nightly-2021-06-14-x86_64-unknown-linux-gnu
2725
cargo build --release --all-features
2826
- store_artifacts:
2927
path: ./target/release/particle-node
@@ -74,12 +72,14 @@ jobs:
7472
- image: circleci/rust:latest
7573
resource_class: xlarge
7674
environment:
77-
RUST_BACKTRACE: 1
75+
RUST_BACKTRACE: full
76+
# set stack size to 16MB
77+
# https://github.com/rayon-rs/rayon/issues/751
78+
# RUST_MIN_STACK: 16777216
7879
steps:
7980
- checkout
8081
- run: |
81-
rustup override set nightly-2021-06-14-x86_64-unknown-linux-gnu
82-
cargo test --no-fail-fast --release --all-features
82+
cargo test --release --all-features --no-fail-fast -- --test-threads=10
8383
8484
workflows:
8585
version: 2

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions-rs/toolchain@v1
3434
with:
3535
profile: minimal
36-
toolchain: nightly-2021-06-14
36+
toolchain: nightly-2021-09-01
3737
override: true
3838

3939
### Build

.github/workflows/rust_ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions-rs/toolchain@v1
2323
with:
2424
profile: minimal
25-
toolchain: nightly-2021-06-14
25+
toolchain: nightly-2021-09-01
2626
override: true
2727

2828
- name: Run cargo check

.github/workflows/rustdoc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
- name: Install Rust toolchain
2323
uses: actions-rs/toolchain@v1
2424
with:
25-
toolchain: nightly-2021-06-14
25+
toolchain: nightly-2021-09-01
2626
profile: minimal
2727
override: true
2828
components: rustfmt, rust-src
2929

3030
- name: Build Documentation
31-
run: RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo +nightly-2021-06-14 doc --all --no-deps
31+
run: RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo +nightly-2021-09-01 doc --all --no-deps
3232

3333
- name: Deploy Docs
3434
uses: peaceiris/[email protected]

0 commit comments

Comments
 (0)