Skip to content

Commit 3d120c0

Browse files
committed
...
1 parent 31ec42e commit 3d120c0

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/cosmocc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Build
3838
run: |
3939
cd core
40-
xmake f --embed=y -y -cvD
40+
xmake f -p linux --cosmocc=y --embed=y -y -cvD -m debug
4141
xmake -v
4242
cd ..
4343

tests/apis/rules_inject_deps/test.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
function main()
2-
os.exec("xmake -j1")
2+
os.exec("xmake -j1 -vD")
33
end

tests/apis/rules_order/test.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
function main()
2-
os.exec("xmake")
2+
os.exec("xmake -vD")
33
end
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
function main()
2-
os.exec("xmake")
2+
os.exec("xmake -vD")
33
end

tests/test_utils/test_build.lua

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ function test_build:build(argv)
99
os.exec("xmake g -c")
1010

1111
-- generic?
12-
os.exec("xmake f -c -D -y")
13-
os.exec("xmake")
14-
os.exec("xmake p -D")
12+
os.exec("xmake f -c -vD -y")
13+
os.exec("xmake -vD")
14+
os.exec("xmake p -vD")
1515
if not is_host("windows") then
1616
os.exec("xmake install -o $(tmpdir) -a -D")
1717
os.exec("xmake uninstall --installdir=$(tmpdir) -D")
1818
end
19-
os.exec("xmake c -D")
19+
os.exec("xmake c -vD")
2020
-- we force to enable ccache to test it on ci
21-
os.exec("xmake f --mode=debug --policies=build.ccache:y -D -y")
21+
os.exec("xmake f --mode=debug --policies=build.ccache:y -vD -y")
2222
os.exec("xmake m -b")
23-
os.exec("xmake -r -a -D")
23+
os.exec("xmake -rv -a -D")
2424
os.exec("xmake m -e buildtest")
2525
os.exec("xmake m -l")
2626
os.exec("xmake m buildtest")

0 commit comments

Comments
 (0)