Skip to content

Commit

Permalink
Merge commit '91656a2' into upstream-da77402
Browse files Browse the repository at this point in the history
  • Loading branch information
Karrq committed Sep 25, 2024
2 parents 7c913e5 + 91656a2 commit 16640d2
Show file tree
Hide file tree
Showing 196 changed files with 6,887 additions and 3,687 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG-FORM.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Bug report
description: File a bug report
labels: ["T-bug"]
labels: ["T-bug", "T-needs-triage"]
body:
- type: markdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/FEATURE-FORM.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Feature request
description: Suggest a feature
labels: ["T-feature"]
labels: ["T-feature", "T-needs-triage"]
body:
- type: markdown
attributes:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ jobs:
run: |
set -eo pipefail
target="${{ matrix.target }}"
flags=(--release --bins --no-default-features --features rustls,aws-kms)
flags=(--release --bins --no-default-features --features rustls,aws-kms,cli,asm-keccak)
# `jemalloc` and `keccak-asm` are not supported on MSVC or aarch64 Linux.
# `jemalloc` is not fully supported on MSVC or aarch64 Linux.
if [[ "$target" != *msvc* && "$target" != "aarch64-unknown-linux-gnu" ]]; then
flags+=(--features asm-keccak,jemalloc)
flags+=(--features jemalloc)
fi
cargo build --release --bin forge --bin cast --target "$target" "${flags[@]}"
Expand Down
Loading

0 comments on commit 16640d2

Please sign in to comment.