Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into feature/execution_…
Browse files Browse the repository at this point in the history
…trace_vault_take_advanced
  • Loading branch information
iamyulong committed Jul 1, 2024
2 parents 72a718f + 5be88f0 commit 0f5dcad
Show file tree
Hide file tree
Showing 54 changed files with 114,664 additions and 326 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,18 +312,18 @@ jobs:
shared-key: radix-clis-debug-${{ runner.os }}
cache-directories: ~/.cargo/registry/src/**/librocksdb-sys-*
workspaces: radix-clis
- name: Install rustc 1.78.0-nightly
- name: Install rustc 1.81.0-nightly
run: |
rustup toolchain install nightly-2024-02-08
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-02-08
rustup default nightly-2024-02-08
rustup toolchain install nightly-2024-06-28
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-06-28
rustup default nightly-2024-06-28
rustup show
- name: Install LLVM 17
- name: Install LLVM 18
run: |
sudo apt install lsb-release wget software-properties-common gnupg
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17
sudo ./llvm.sh 18
- name: Run tests
working-directory: radix-clis
run: bash ./tests/scrypto_coverage.sh
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"descendents",
"eddsa",
"endregion",
"flamechart",
"flamegraph",
"Formattable",
"generification",
Expand Down
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ itertools = { version = "0.10.3" }
lazy_static = { version = "1.4.0" }
linreg = { version = "0.2.0" }
lru = { version = "0.8.1", default-features = false }
minicov = { version = "0.3" }
minicov = { version = "=0.3.5" }
moka = { version = "0.9.9", features = ["sync"], default-features = false }
num-bigint = { version = "0.4.3", default-features = false }
num-integer = { version = "0.1.45", default-features = false }
Expand Down Expand Up @@ -128,6 +128,8 @@ wasmer-compiler-singlepass = { version = "2.2.1" }
wasmparser = { version = "0.107.0", default-features = false }
extend = { version = "1.2.0" }
zeroize = { version = "1.3.0" }
inferno = { version = "0.11.19" }
tempfile = { version = "3.8.0" }
fslock = { version = "0.2.1" }

# Both the release and test profiles use `panic = "unwind"` to allow certain parts of the Radix
Expand Down
Loading

0 comments on commit 0f5dcad

Please sign in to comment.