Skip to content

Commit 86ea64e

Browse files
committed
chore(ci): enable verbose xmake diagnostics
1 parent 6f1e83d commit 86ea64e

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
run: xlings install
2525

2626
- name: Build
27-
run: xmake build -a -y
27+
run: xmake build -a -y -vvD
2828

2929
- name: Test
3030
run: |
31-
xmake run test_types -y
32-
xmake run test_serialization -y
33-
xmake run test_coro -y
34-
xmake run test_client -y
35-
xmake run test_openai_serialize -y
36-
xmake run test_anthropic_serialize -y
37-
xmake run test_llmapi_integration -y
31+
xmake run test_types -y -vvD
32+
xmake run test_serialization -y -vvD
33+
xmake run test_coro -y -vvD
34+
xmake run test_client -y -vvD
35+
xmake run test_openai_serialize -y -vvD
36+
xmake run test_anthropic_serialize -y -vvD
37+
xmake run test_llmapi_integration -y -vvD
3838
3939
build-macos:
4040
runs-on: macos-latest
@@ -53,17 +53,17 @@ jobs:
5353
run: xlings install
5454

5555
- name: Build
56-
run: xmake build -a -y
56+
run: xmake build -a -y -vvD
5757

5858
- name: Test
5959
run: |
60-
xmake run test_types -y
61-
xmake run test_serialization -y
62-
xmake run test_coro -y
63-
xmake run test_client -y
64-
xmake run test_openai_serialize -y
65-
xmake run test_anthropic_serialize -y
66-
xmake run test_llmapi_integration -y
60+
xmake run test_types -y -vvD
61+
xmake run test_serialization -y -vvD
62+
xmake run test_coro -y -vvD
63+
xmake run test_client -y -vvD
64+
xmake run test_openai_serialize -y -vvD
65+
xmake run test_anthropic_serialize -y -vvD
66+
xmake run test_llmapi_integration -y -vvD
6767
6868
build-windows:
6969
runs-on: windows-latest
@@ -83,14 +83,14 @@ jobs:
8383
run: xlings install
8484

8585
- name: Build
86-
run: xmake build -a -y
86+
run: xmake build -a -y -vvD
8787

8888
- name: Test
8989
run: |
90-
xmake run test_types -y
91-
xmake run test_serialization -y
92-
xmake run test_coro -y
93-
xmake run test_client -y
94-
xmake run test_openai_serialize -y
95-
xmake run test_anthropic_serialize -y
96-
xmake run test_llmapi_integration -y
90+
xmake run test_types -y -vvD
91+
xmake run test_serialization -y -vvD
92+
xmake run test_coro -y -vvD
93+
xmake run test_client -y -vvD
94+
xmake run test_openai_serialize -y -vvD
95+
xmake run test_anthropic_serialize -y -vvD
96+
xmake run test_llmapi_integration -y -vvD

0 commit comments

Comments
 (0)