帮我写个 cmake构建 gitlab-ci.yml 的例子
时间: 2023-11-11 17:02:30 浏览: 80
cmake代码示例
好的,以下是一个示例:
```
image: docker:latest
stages:
- build
build:
stage: build
script:
- apt-get update && apt-get install -y cmake
- mkdir build && cd build
- cmake ..
- make
```
这个示例使用了 Docker 镜像,并执行了一个构建阶段即 build,其中安装了 CMake,然后在 build 目录中构建了项目。
阅读全文