From 78cd3a26cb0e546c0218a9460256bd325a39e466 Mon Sep 17 00:00:00 2001 From: Condorra Date: Sun, 12 Feb 2023 21:01:52 +1100 Subject: [PATCH] Dump structure for debugging. --- .ci/build | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.ci/build b/.ci/build index 5dddb56e..be8af6f0 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 .