aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2026-01-26 17:54:35 +0800
committerLi Jin <dragon-fly@qq.com>2026-01-26 17:54:35 +0800
commite70e63a9737ed3a9e72f1329901075498190e6b4 (patch)
tree73e3586019c21bf53ecbc4a1970333ed2e5e043e
parente02321107277a63e7dcb12ab163c9942ac101b87 (diff)
downloadyuescript-e70e63a9737ed3a9e72f1329901075498190e6b4.tar.gz
yuescript-e70e63a9737ed3a9e72f1329901075498190e6b4.tar.bz2
yuescript-e70e63a9737ed3a9e72f1329901075498190e6b4.zip
Fixed Windows CI test coverageHEADmain
Added missing try_catch_spec.yue compilation command to both x86 and x64 builds in windows.yml, matching the Makefile test target. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
-rw-r--r--.github/workflows/windows.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 04d08b0..9cd09fc 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -26,6 +26,7 @@ jobs:
26 bin\windows\Win32\Debug\yue.exe spec\inputs\attrib.yue -o spec\generated\5.1\attrib.lua --target=5.1 26 bin\windows\Win32\Debug\yue.exe spec\inputs\attrib.yue -o spec\generated\5.1\attrib.lua --target=5.1
27 bin\windows\Win32\Debug\yue.exe spec\inputs\import_global.yue -o spec\generated\5.1\import_global.lua --target=5.1 27 bin\windows\Win32\Debug\yue.exe spec\inputs\import_global.yue -o spec\generated\5.1\import_global.lua --target=5.1
28 bin\windows\Win32\Debug\yue.exe spec\inputs\test\loops_spec.yue -o spec\generated\5.1\test\loops_spec.lua --target=5.1 28 bin\windows\Win32\Debug\yue.exe spec\inputs\test\loops_spec.yue -o spec\generated\5.1\test\loops_spec.lua --target=5.1
29 bin\windows\Win32\Debug\yue.exe spec\inputs\test\try_catch_spec.yue -o spec\generated\5.1\test\try_catch_spec.lua --target=5.1
29 bin\windows\Win32\Debug\yue.exe -e spec/inputs/compile_doc.yue spec/generated 30 bin\windows\Win32\Debug\yue.exe -e spec/inputs/compile_doc.yue spec/generated
30 bin\windows\Win32\Debug\yue.exe -e "io.popen('git diff --no-index spec\\outputs spec\\generated')\read('*a') |> ((r)-> r ~= '' and (print(r) or os.exit 1))" 31 bin\windows\Win32\Debug\yue.exe -e "io.popen('git diff --no-index spec\\outputs spec\\generated')\read('*a') |> ((r)-> r ~= '' and (print(r) or os.exit 1))"
31 msbuild win-build\Yuescript.sln /p:Configuration=Debug /p:Platform=x64 32 msbuild win-build\Yuescript.sln /p:Configuration=Debug /p:Platform=x64
@@ -36,6 +37,7 @@ jobs:
36 bin\windows\x64\Debug\yue.exe spec\inputs\attrib.yue -o spec\generated\5.1\attrib.lua --target=5.1 37 bin\windows\x64\Debug\yue.exe spec\inputs\attrib.yue -o spec\generated\5.1\attrib.lua --target=5.1
37 bin\windows\x64\Debug\yue.exe spec\inputs\import_global.yue -o spec\generated\5.1\import_global.lua --target=5.1 38 bin\windows\x64\Debug\yue.exe spec\inputs\import_global.yue -o spec\generated\5.1\import_global.lua --target=5.1
38 bin\windows\x64\Debug\yue.exe spec\inputs\test\loops_spec.yue -o spec\generated\5.1\test\loops_spec.lua --target=5.1 39 bin\windows\x64\Debug\yue.exe spec\inputs\test\loops_spec.yue -o spec\generated\5.1\test\loops_spec.lua --target=5.1
40 bin\windows\x64\Debug\yue.exe spec\inputs\test\try_catch_spec.yue -o spec\generated\5.1\test\try_catch_spec.lua --target=5.1
39 bin\windows\x64\Debug\yue.exe -e spec/inputs/compile_doc.yue spec/generated 41 bin\windows\x64\Debug\yue.exe -e spec/inputs/compile_doc.yue spec/generated
40 bin\windows\x64\Debug\yue.exe -e "io.popen('git diff --no-index spec\\outputs spec\\generated')\read('*a') |> ((r)-> r ~= '' and (print(r) or os.exit 1))" 42 bin\windows\x64\Debug\yue.exe -e "io.popen('git diff --no-index spec\\outputs spec\\generated')\read('*a') |> ((r)-> r ~= '' and (print(r) or os.exit 1))"
41 - name: pack 43 - name: pack