test: Update 2 files
Some checks failed
Build-Test-Publish / build (linux/arm64) (push) Failing after 9s
Build-Test-Publish / build (linux/amd64) (push) Failing after 20s
Build-Test-Publish / test-install-from-scratch (linux/amd64) (push) Has been skipped
Build-Test-Publish / test-install-from-scratch (linux/arm64) (push) Has been skipped

This commit is contained in:
Your Name 2025-06-25 19:00:50 +12:00
parent 95492b1b93
commit bf4021464f
2 changed files with 16 additions and 3 deletions

View File

@ -11,7 +11,20 @@ rm -rf dehydrate_test_data
# Build the test program - mount the entire project directory to access ../output/dehydrate # Build the test program - mount the entire project directory to access ../output/dehydrate
docker run --rm -v "$PROJECT_DIR":/workdir -w /workdir/test gitea.jde.nz/public/dropshell-build-base:latest \ docker run --rm -v "$PROJECT_DIR":/workdir -w /workdir/test gitea.jde.nz/public/dropshell-build-base:latest \
g++ -std=c++23 -static dehydrate_test.cpp -o dehydrate_test bash -c "
if [ -f dehydrate_test.cpp ]; then
g++ -std=c++23 -static dehydrate_test.cpp -o dehydrate_test
else
echo 'ERROR: dehydrate_test.cpp not found in current directory'
exit 1
fi
"
# Check if compilation succeeded
if [ ! -f "./dehydrate_test" ]; then
echo "Error: Failed to compile dehydrate_test"
exit 1
fi
# Run the test # Run the test
./dehydrate_test ./dehydrate_test

View File

@ -291,8 +291,8 @@ if [ "$1" = "autocomplete" ]; then
fi fi
# Check if we're being called to show version # Check if we're being called to show version
if [ "$1" = "version" ]; then if [ "$1" = "version" ] || [ "$1" = "--version" ] || [ "$1" = "-v" ] || [ "$1" = "v" ]; then
echo "whatsdirty 1.0.0" echo "1.0.1"
exit 0 exit 0
fi fi