Skip to content

Commit

Permalink
fix(ci): remove enable feature
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 committed Aug 26, 2024
1 parent ead4e9d commit 0ec235c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ fi
# SGX
if [ "$1" == "sgx" ]; then
check_toolchain $TOOLCHAIN_SGX
cargo ${TOOLCHAIN_SGX} test -F "sgx enable integration" run_scenarios_sequentially
cargo ${TOOLCHAIN_SGX} test -F "sgx integration" run_scenarios_sequentially
fi

# RISC0
if [ "$1" == "risc0" ]; then
check_toolchain $TOOLCHAIN_RISC0
./script/setup-bonsai.sh
cargo ${TOOLCHAIN_RISC0} test -F "risc0 enable integration" run_scenarios_sequentially
cargo ${TOOLCHAIN_RISC0} test -F "risc0 integration" run_scenarios_sequentially
fi

# SP1
if [ "$1" == "sp1" ]; then
check_toolchain $TOOLCHAIN_SP1
cargo ${TOOLCHAIN_SP1} test -F "sp1 enable integration" run_scenarios_sequentially
cargo ${TOOLCHAIN_SP1} test -F "sp1 integration" run_scenarios_sequentially
fi

0 comments on commit 0ec235c

Please sign in to comment.