Compare commits
3 Commits
v2025.0630
...
v2025.0630
Author | SHA1 | Date | |
---|---|---|---|
af4cbbcab0 | |||
a415eb0f91 | |||
83d6cf1603 |
@ -109,7 +109,7 @@ function buildtestpublish() {
|
||||
# Add to projects list
|
||||
PROJECTS+=("$TOOLNAME")
|
||||
|
||||
#cd "$dir" || echo "Failed to cd to $dir"
|
||||
cd "$dir" || echo "Failed to cd to $dir"
|
||||
|
||||
subtitle "🔨 BUILDING $TOOLNAME_UPPER 🔨"
|
||||
if dothis build "$dir" "$TOOLNAME"; then
|
||||
|
@ -3,7 +3,7 @@ set -euo pipefail
|
||||
|
||||
# Get script directory - handle different execution contexts
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||
PROJECT="$(basename "$(dirname "${SCRIPT_DIR}")")"
|
||||
PROJECT="$(basename "${SCRIPT_DIR}")"
|
||||
|
||||
# Debug output for CI
|
||||
echo "${PROJECT} build script running from: ${SCRIPT_DIR}"
|
||||
|
@ -70,6 +70,18 @@ ls -la "$OUTPUT_DIR" 2>/dev/null || echo "Output directory not found"
|
||||
if [ ! -f "$DEHYDRATE" ]; then
|
||||
echo -e "${RED}Error: dehydrate binary not found at $DEHYDRATE${NC}"
|
||||
echo "Please run ./build.sh first to build dehydrate"
|
||||
|
||||
if [ -n "${GITEA_CONTAINER_NAME:-}" ]; then
|
||||
echo "Checking if build directory exists..."
|
||||
BUILD_DIR="${GITHUB_WORKSPACE}/dehydrate/build"
|
||||
if [ -d "$BUILD_DIR" ]; then
|
||||
echo "Build directory exists, checking contents:"
|
||||
ls -la "$BUILD_DIR"
|
||||
else
|
||||
echo "Build directory $BUILD_DIR does not exist"
|
||||
fi
|
||||
fi
|
||||
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -3,7 +3,7 @@ set -euo pipefail
|
||||
|
||||
# Get script directory - handle different execution contexts
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||
PROJECT="$(basename "$(dirname "${SCRIPT_DIR}")")"
|
||||
PROJECT="$(basename "${SCRIPT_DIR}")"
|
||||
|
||||
# Debug output for CI
|
||||
echo "${PROJECT} build script running from: ${SCRIPT_DIR}"
|
||||
|
Reference in New Issue
Block a user