Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: enable default features during faucet release #1735

Merged
merged 1 commit into from
May 20, 2024
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
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ build-release-artifacts arch:

if [[ $arch == arm* || $arch == armv7* || $arch == aarch64* ]]; then
cargo install cross
cross build --release --target $arch --bin faucet --features=distribution --no-default-features
cross build --release --target $arch --bin faucet --features=distribution
cross build --release --target $arch --bin node-launchpad
cross build --release --features="network-contacts,distribution" --target $arch --bin safe
cross build --release --features=network-contacts --target $arch --bin safenode
Expand All @@ -122,7 +122,7 @@ build-release-artifacts arch:
cross build --release --target $arch --bin safenode_rpc_client
cross build --release --target $arch --bin sn_auditor
else
cargo build --release --target $arch --bin faucet --features=distribution --no-default-features
cargo build --release --target $arch --bin faucet --features=distribution
cargo build --release --target $arch --bin node-launchpad
cargo build --release --features="network-contacts,distribution" --target $arch --bin safe
cargo build --release --features=network-contacts --target $arch --bin safenode
Expand Down
1 change: 0 additions & 1 deletion sn_faucet/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
// permissions and limitations relating to use of the SAFE Network Software.

mod faucet_server;

Copy link
Member Author

Choose a reason for hiding this comment

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

To trigger release flow for faucet

#[cfg(feature = "distribution")]
mod token_distribution;

Expand Down
Loading