From b3f5a0f083bc09471b97895404118b31a1e38135 Mon Sep 17 00:00:00 2001 From: wangjia <809946525@qq.com> Date: Mon, 1 Jun 2026 01:13:48 +0800 Subject: [PATCH] =?UTF-8?q?debug(ci):=20=E6=B7=BB=E5=8A=A0=20Windows=20?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E7=9B=AE=E5=BD=95=E8=AF=8A=E6=96=AD=E8=BE=93?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/ci/compile-windows.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/ci/compile-windows.sh b/scripts/ci/compile-windows.sh index e468dfd..b50d498 100755 --- a/scripts/ci/compile-windows.sh +++ b/scripts/ci/compile-windows.sh @@ -16,7 +16,12 @@ sed -i "s/^version:.*/version: ${VER}+1/" client/pubspec.yaml # Build Flutter Windows cd client +echo "==> pwd: $(pwd)" +echo "==> windows/ before create: $(test -d windows && echo EXISTS || echo MISSING)" flutter create --platforms=windows . --project-name jiu_client +echo "==> windows/ after create: $(test -d windows && echo EXISTS || echo MISSING)" +echo "==> windows/CMakeLists.txt: $(test -f windows/CMakeLists.txt && echo EXISTS || echo MISSING)" +ls windows/ 2>&1 || echo "(ls failed)" flutter build windows --release \ "--dart-define=BASE_URL=https://jiu.51yanmei.com" \ "--dart-define=PUBLIC_URL=https://jiu.51yanmei.com" \