Skip to content

Commit 56bc61b

Browse files
committed
wip
1 parent 58f244e commit 56bc61b

19 files changed

+2467
-865
lines changed

Makefile

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ help:
2020
@echo " make docker-build - Build Docker test container (mimics CI)"
2121
@echo " make docker-test - Run tests in Docker"
2222
@echo " make docker-shell - Open shell in Docker for debugging"
23-
@echo " make docker-windows-quick - Quick Windows API check (works on ARM64/M1/M2)"
24-
@echo " make docker-windows - Full Windows test (requires x86_64 host)"
25-
@echo " make docker-win-shell - Open Windows test shell for debugging"
2623
@echo ""
2724
@echo "Cleanup:"
2825
@echo " make clean - Remove build artifacts"
@@ -108,24 +105,3 @@ docker-test: docker-build
108105
docker-shell:
109106
@echo "Opening shell in Docker container for debugging..."
110107
docker run --rm -it -v $(PWD):/workspace httpmorph-test bash
111-
112-
# Windows compatibility testing with MinGW cross-compile
113-
docker-windows:
114-
@echo "Testing Windows compatibility with MinGW-w64..."
115-
@echo "Note: This tests API compatibility, not full MSVC behavior."
116-
@echo "Note: Requires x86_64 host (may fail on ARM64/Apple Silicon due to vcpkg limitations)"
117-
docker-compose -f docker/docker-compose.windows-test.yml up windows-mingw
118-
119-
# Quick Windows syntax check (works on ARM64/Apple Silicon)
120-
docker-windows-quick:
121-
@echo "Quick Windows API compatibility check..."
122-
docker build -f docker/Dockerfile.windows-quick -t httpmorph-windows-quick .
123-
docker run --rm httpmorph-windows-quick
124-
125-
docker-win-shell:
126-
@echo "Opening Windows test shell (MinGW cross-compile environment)..."
127-
docker-compose -f docker/docker-compose.windows-test.yml run windows-shell
128-
129-
docker-windows-build:
130-
@echo "Building Windows test image..."
131-
docker build -f docker/Dockerfile.windows-mingw -t httpmorph-windows-test .

0 commit comments

Comments
 (0)