Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:

# Keep in sync with `release.yml`.
RUST_PROFILE: maxperf
RUST_FEATURES: aws-kms,gcp-kms,cli,asm-keccak,js-tracer
RUST_FEATURES: aws-kms,gcp-kms,turnkey,cli,asm-keccak,js-tracer

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:

# Keep in sync with `docker-publish.yml`.
RUST_PROFILE: maxperf
RUST_FEATURES: aws-kms,gcp-kms,cli,asm-keccak,js-tracer
RUST_FEATURES: aws-kms,gcp-kms,turnkey,cli,asm-keccak,js-tracer

LAST_STABLE_VERSION: "v1.4.4"

Expand Down
4 changes: 4 additions & 0 deletions docs/dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ We use [cargo-nextest][nextest] as the test runner.

If `make test` passes locally, that's a good sign that CI will be green as well.

## Release Features
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

helpful, ty


Nightly/stable release builds derive their enabled functionality from the shared `RUST_FEATURES` environment variable in `.github/workflows/release.yml` and `.github/workflows/docker-publish.yml`. Keep that list aligned with the default `FEATURES` value in the root `Makefile` so published artifacts expose the same CLI surface area (wallet backends, allocators, tracers, etc.) as local builds.

[foundry-book]: https://book.getfoundry.sh
[cargo-workspace]: https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html
[nextest]: https://nexte.st/
Loading