diff --git a/.ci/build b/.ci/build index 5dddb56..be8af6f 100755 --- a/.ci/build +++ b/.ci/build @@ -1,7 +1,10 @@ #!/bin/bash -e set -Eeuo pipefail -echo Using HOME: $HOME +export HOME=$(pwd) +echo Pre-build layout +ls -lR . + cd blastmud-repo echo Running tests cargo test --target-dir ../target --profile release @@ -10,3 +13,6 @@ cargo build --target-dir ../target --profile release echo Copying artifacts cp ../target/release/blastmud_game ../output/ cp ../target/release/blastmud_listener ../output/ + +echo Final layout +ls -lR .