Add Gitea CTest workflow configuration
Some checks failed
Gitea CTest Workflow / test (push) Has been cancelled
Some checks failed
Gitea CTest Workflow / test (push) Has been cancelled
This commit is contained in:
33
.gitea/workflows/test.yaml
Normal file
33
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Gitea CTest Workflow
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main", "master" ]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
# 显式使用 gitea.com 上的 checkout 镜像
|
||||
- name: Checkout Code
|
||||
uses: https://gitea.com/actions/checkout@v4
|
||||
with:
|
||||
# 对于镜像仓库,建议显式指定 fetch-depth 确保获取完整历史(如果需要)
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Configure CMake
|
||||
# -B build 创建构建目录,-S . 指定源代码在当前目录
|
||||
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
- name: Build with CMake
|
||||
# 使用 --parallel 充分利用 Runner 核心数
|
||||
run: cmake --build build --parallel $(nproc)
|
||||
|
||||
- name: Run CTest via CMake
|
||||
# 在 build 目录下运行 ctest
|
||||
# --output-on-failure 可以在测试失败时直接看到 log
|
||||
run: |
|
||||
cd build
|
||||
ctest --output-on-failure --parallel $(nproc)
|
||||
Reference in New Issue
Block a user