Skip to content

Commit

Permalink
chore(scripts): <- adds one of those to test `include-origin-tx-detai…
Browse files Browse the repository at this point in the history
…ls` features
  • Loading branch information
gskapka committed Feb 7, 2024
1 parent 0799f7a commit ac90591
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scripts/test-build-with-origin-tx-details.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Exit early if non-zero exit code encountered
set -e

echo testing cores with origin chain tx pass through enabled

featureFlag="--features=include-origin-tx-details"

packages=(
"int_on_evm" # NOTE: array in case we add this feature to future cores
)

for package in "${packages[@]}"
do
echo testing cores with origin chain tx pass through enabled for package: \'$package\'...
cargo test --package=$package $featureFlag
done

0 comments on commit ac90591

Please sign in to comment.