Skip to content

Commit

Permalink
Integrate async AVM, introduce user-defined callbacks (#1209)
Browse files Browse the repository at this point in the history
  • Loading branch information
folex authored Nov 8, 2021
1 parent 7b7049c commit 5022da0
Show file tree
Hide file tree
Showing 115 changed files with 4,263 additions and 3,492 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
keys:
- fluence05-{{ checksum "Cargo.lock" }}
- run: |
rustup toolchain install nightly-2021-06-14-x86_64-unknown-linux-gnu
rustup override set nightly-2021-06-14-x86_64-unknown-linux-gnu
cargo build --release --all-features
- store_artifacts:
path: ./target/release/particle-node
Expand Down Expand Up @@ -74,12 +72,14 @@ jobs:
- image: circleci/rust:latest
resource_class: xlarge
environment:
RUST_BACKTRACE: 1
RUST_BACKTRACE: full
# set stack size to 16MB
# https://github.com/rayon-rs/rayon/issues/751
# RUST_MIN_STACK: 16777216
steps:
- checkout
- run: |
rustup override set nightly-2021-06-14-x86_64-unknown-linux-gnu
cargo test --no-fail-fast --release --all-features
cargo test --release --all-features --no-fail-fast -- --test-threads=10
workflows:
version: 2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-06-14
toolchain: nightly-2021-09-01
override: true

### Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-06-14
toolchain: nightly-2021-09-01
override: true

- name: Run cargo check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rustdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2021-06-14
toolchain: nightly-2021-09-01
profile: minimal
override: true
components: rustfmt, rust-src

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

- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3.7.3
Expand Down
Loading

0 comments on commit 5022da0

Please sign in to comment.