Skip to content

Commit 185322d

Browse files
authored
[0795] CD/CI 默认开启 Collab (#4224)
1 parent 9b024ab commit 185322d

11 files changed

Lines changed: 12 additions & 10 deletions

.github/workflows/cd-debian13.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
# 3. 编译流程
8282
# ==========================================
8383
- name: Config
84-
run: xmake config --yes -vD -m release --policies=build.ccache
84+
run: xmake config --loro=yes --yes -vD -m release --policies=build.ccache
8585

8686
- name: Build
8787
run: xmake build -vD stem

.github/workflows/cd-research-mogan-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
npm run build
8686
8787
- name: config
88-
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build -m release -p wasm --qt_frontend=no --pdfhummus=no --goldfish=no --yes
88+
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build -m release -p wasm --qt_frontend=no --pdfhummus=no --goldfish=no --loro=yes --yes
8989

9090
- name: build
9191
run: xmake build --yes -vD stem

.github/workflows/cd_on_macos_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: xmake repo --update
3030
- name: Config and build goldfish
3131
run: |
32-
xmake config -m release -a ${{ matrix.arch }} -vD --yes
32+
xmake config -m release -a ${{ matrix.arch }} -vD --loro=yes --yes
3333
xmake build goldfish-bin
3434
ls -la TeXmacs/plugins/goldfish/bin/ || echo "goldfish bin dir not found"
3535
- name: Package with Goldfish

.github/workflows/cd_research_on_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
wget https://github.com/XmacsLabs/mogan/releases/download/v1.2.9.7/NotoSerifCJK-Bold.ttc
4040
wget https://github.com/XmacsLabs/mogan/releases/download/v1.2.9.7/NotoSerifCJK-Regular.ttc
4141
- name: config
42-
run: xmake config --yes -vD -m release
42+
run: xmake config --loro=yes --yes -vD -m release
4343
- name: build
4444
run: xmake build -vD stem
4545
- name: install

.github/workflows/ci-debian13.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
- '3rdparty/**'
135135
136136
- name: config
137-
run: xmake config -vD --policies=build.ccache -o tmp/build -m releasedbg --yes
137+
run: xmake config -vD --policies=build.ccache -o tmp/build -m releasedbg --loro=yes --yes
138138
- name: build lolly
139139
if: steps.filter.outputs.lolly == 'true'
140140
run: xmake build --yes -vD liblolly

.github/workflows/ci-imgui-debian13.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
key: ${{ runner.os }}-xrepo-imgui-${{ hashFiles('xmake/vars.lua', 'lolly/xmake.lua', 'moebius/xmake.lua', 'xmake/requires.lua') }}
8080

8181
- name: config
82-
run: xmake config -vD --qt_frontend=no --policies=build.ccache --yes
82+
run: xmake config -vD --qt_frontend=no --loro=yes --policies=build.ccache --yes
8383

8484
- name: build stem
8585
run: xmake b -vD stem

.github/workflows/ci-imgui-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
key: ${{ runner.os }}-xrepo-imgui-${{ matrix.arch }}-${{ hashFiles('xmake/vars.lua', 'lolly/xmake.lua', 'moebius/xmake.lua') }}
4545

4646
- name: config
47-
run: xmake config -vD --qt_frontend=no --policies=build.ccache --yes
47+
run: xmake config -vD --qt_frontend=no --loro=yes --policies=build.ccache --yes
4848

4949
- name: build stem
5050
run: xmake b -vD stem

.github/workflows/ci-macos-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
key: xrepo-${{ runner.os }}-${{ matrix.arch }}-${{ hashFiles('xmake/vars.lua', 'lolly/xmake.lua', 'moebius/xmake.lua') }}
162162

163163
- name: config
164-
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build -m releasedbg --yes
164+
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build -m releasedbg --loro=yes --yes
165165
- name: build lolly
166166
if: steps.filter.outputs.lolly == 'true'
167167
run: xmake build --yes -vD liblolly

.github/workflows/ci-macos-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
key: npm-${{ runner.os }}-${{ hashFiles('web/package-lock.json') }}
9999

100100
- name: config
101-
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build -m releasedbg -p wasm --qt_frontend=no --pdfhummus=no --goldfish=no --yes
101+
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build -m releasedbg -p wasm --qt_frontend=no --pdfhummus=no --goldfish=no --loro=yes --yes
102102

103103
- name: build
104104
run: xmake build --yes -vD stem

.github/workflows/ci-xmake-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
${{ github.workspace }}/build/.build_cache
142142
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('xmake/vars.lua', 'lolly/xmake.lua', 'moebius/xmake.lua') }}
143143
- name: config
144-
run: xmake config --policies=build.ccache --yes -vD -m releasedbg --plat=windows
144+
run: xmake config --policies=build.ccache --yes -vD -m releasedbg --loro=yes --plat=windows
145145
- name: build lolly
146146
if: steps.filter.outputs.lolly == 'true'
147147
run: xmake build --yes -vD liblolly

0 commit comments

Comments
 (0)