diff --git a/.github/workflows/ci-build-test-reusable.yml b/.github/workflows/ci-build-test-reusable.yml index 40c86e43..443fddef 100644 --- a/.github/workflows/ci-build-test-reusable.yml +++ b/.github/workflows/ci-build-test-reusable.yml @@ -57,5 +57,7 @@ jobs: - name: Build ${{ inputs.version_name }} prover run: make build + - name: Setup Redis service + uses: shogo82148/actions-setup-redis@v1 - name: Test ${{ inputs.version_name }} prover run: make test diff --git a/script/build.sh b/script/build.sh index b469de31..809415c4 100755 --- a/script/build.sh +++ b/script/build.sh @@ -56,7 +56,7 @@ if [ -z "$1" ] || [ "$1" == "native" ]; then cargo build ${FLAGS} -F $TASKDB else echo "Building native tests" - cargo test ${FLAGS} --no-run -F $TASKDB + cargo test ${FLAGS} --no-run -F $TASKDB -- --nocapture fi else if [ -z "${TEST}" ]; then @@ -64,7 +64,7 @@ if [ -z "$1" ] || [ "$1" == "native" ]; then cargo run ${FLAGS} -F $TASKDB else echo "Running native tests" - cargo test ${FLAGS} -F $TASKDB + cargo test ${FLAGS} -F $TASKDB -- --nocapture fi fi fi