Skip to content

Commit

Permalink
fix: Fix scripts after removal of scrypto-test/assets/blueprints
Browse files Browse the repository at this point in the history
  • Loading branch information
dhedey committed Feb 1, 2025
1 parent 6730118 commit 11cfbe3
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ echo "Building scrypto packages and tests using cargo build, to catch errors qui
(set -x; cd radix-engine-tests/assets/blueprints; cargo build; cargo test --no-run)
(set -x; cd radix-clis/tests/blueprints; cargo build; cargo test --no-run)
(set -x; cd scrypto-test/tests/blueprints; cargo build; cargo test --no-run)
(set -x; cd scrypto-test/assets/blueprints; cargo build; cargo test --no-run)
(set -x; cd radix-transaction-scenarios/assets/blueprints; cargo build; cargo test --no-run)
(set -x; cd scrypto-compiler/tests/assets/scenario_1; cargo build; cargo test --no-run)
(set -x; cd scrypto-compiler/tests/assets/scenario_2; cargo build; cargo test --no-run)
Expand Down Expand Up @@ -47,11 +46,6 @@ echo "Building scrypto packages used in tests with scrypto build..."
| awk '{print substr($1, 1, length($1)-length("Cargo.toml"))}' \
| xargs -I '{}' bash -c "set -x; $scrypto build --path {}"
)
(
find "scrypto-test/assets/blueprints" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| awk '{print substr($1, 1, length($1)-length("Cargo.toml"))}' \
| xargs -I '{}' bash -c "set -x; $scrypto build --path {}"
)
(
find "radix-transaction-scenarios/assets/blueprints" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| awk '{print substr($1, 1, length($1)-length("Cargo.toml"))}' \
Expand Down
1 change: 0 additions & 1 deletion check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ packages="Cargo.toml$lf"
packages+="radix-engine-tests/assets/blueprints/Cargo.toml$lf"
packages+="radix-clis/tests/blueprints/Cargo.toml$lf"
packages+="scrypto-test/tests/blueprints/Cargo.toml$lf"
packages+="scrypto-test/assets/blueprints/Cargo.toml$lf"
packages+="scrypto-compiler/tests/assets/scenario_1/Cargo.toml$lf"
packages+="scrypto-compiler/tests/assets/scenario_2/Cargo.toml$lf"
packages+="$(find examples -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \))$lf"
Expand Down
1 change: 0 additions & 1 deletion format-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ packages="Cargo.toml$lf"
packages+="radix-engine-tests/assets/blueprints/Cargo.toml$lf"
packages+="radix-clis/tests/blueprints/Cargo.toml$lf"
packages+="scrypto-test/tests/blueprints/Cargo.toml$lf"
packages+="scrypto-test/assets/blueprints/Cargo.toml$lf"
packages+="scrypto-compiler/tests/assets/scenario_1/Cargo.toml$lf"
packages+="scrypto-compiler/tests/assets/scenario_2/Cargo.toml$lf"
packages+="$(find examples -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \))$lf"
Expand Down
1 change: 0 additions & 1 deletion format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ cd "$(dirname "$0")"
(set -x; cd radix-engine-tests/assets/blueprints; cargo fmt)
(set -x; cd radix-clis/tests/blueprints; cargo fmt)
(set -x; cd scrypto-test/tests/blueprints; cargo fmt)
(set -x; cd scrypto-test/assets/blueprints; cargo fmt)
(set -x; cd scrypto-compiler/tests/assets/scenario_1; cargo fmt)
(set -x; cd scrypto-compiler/tests/assets/scenario_2; cargo fmt)

Expand Down
1 change: 0 additions & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ if [ $doc_test_separately -eq 1 ] ; then
(set -x; cd radix-engine-tests/assets/blueprints; cargo test --doc)
(set -x; cd radix-clis/tests/blueprints; cargo test --doc)
(set -x; cd scrypto-test/tests/blueprints; cargo test --doc)
(set -x; cd scrypto-test/assets/blueprints; cargo test --doc)
(set -x; cd scrypto-compiler/tests/assets/scenario_1; cargo test --doc)
(set -x; cd scrypto-compiler/tests/assets/scenario_2; cargo test --doc)
(
Expand Down

0 comments on commit 11cfbe3

Please sign in to comment.