Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ rustflags = [
"--cfg",
"tokio_unstable",
"-C",
"linker=clang",
"-C",
"link-arg=-fuse-ld=lld",
"-C",
"force-frame-pointers=yes",
Expand All @@ -55,3 +57,7 @@ rustflags = [
"-C",
"link-arg=/STACK:8000000", # Set stack to 8 MB
]

[env]
CMAKE_POLICY_VERSION_MINIMUM = "3.5"
CXXFLAGS = "-include cstdint" # Needed for `librocksdb-sys` build
9 changes: 8 additions & 1 deletion .github/workflows/aptos-framework-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ env:
APTOS_BIN: ~/.local/bin/aptos
SCRYPTO_BIN: ~/.cargo/bin/scrypto
jobs:
build:
check:
runs-on: ghr-elastic-supra-aptos-core-runner
timeout-minutes: 10
steps:
- uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v4
- run: cargo check --workspace
test:
runs-on: ghr-elastic-supra-aptos-core-runner
timeout-minutes: 90
steps:
Expand Down
Loading
Loading