Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-debian13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
uses: actions/cache@v4
with:
path: |
tmp/build/.build_cache
${{ runner.workspace }}/mogan/build/.build_cache
key: ${{ runner.os }}-build-qt683-${{ hashFiles('**/packages.lua') }}

- name: Detect changes
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- '3rdparty/**'

- name: config
run: xmake config -vD --policies=build.ccache -o tmp/build -m releasedbg --loro=yes --yes
run: xmake config -vD --policies=build.ccache -o ${{ runner.workspace }}/mogan/build -m releasedbg --loro=yes --yes
- name: build lolly
if: steps.filter.outputs.lolly == 'true'
run: xmake build --yes -vD liblolly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-macos-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
key: xrepo-${{ runner.os }}-${{ matrix.arch }}-${{ hashFiles('xmake/vars.lua', 'lolly/xmake.lua', 'moebius/xmake.lua') }}

- name: config
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build -m releasedbg --loro=yes --yes
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/mogan/build -m releasedbg --loro=yes --yes
- name: build lolly
if: steps.filter.outputs.lolly == 'true'
run: xmake build --yes -vD liblolly
Expand Down
6 changes: 6 additions & 0 deletions devel/0743.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# [0743] 解决 CI 测试 loro_tmu_test 找不到文件的问题
## Why?
CI 中指定了 xmake build 文件夹的地址,导致测试运行的路径状态与本地不一致,测试无法找到对应的 tmu 文件。

## How
更改 CI 中指定的 build 地址
2 changes: 1 addition & 1 deletion moebius/Kernel/Types/frame.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

//
/******************************************************************************
* MODULE : frame.cpp
* DESCRIPTION: coordinate frames
Expand Down
Loading