# You Don't Know CNB YAML 不知道您是否有用疑问,当您监听的事件越来越多: * 您的 .cnb.yml 越来越长 * 您的 .cnb.yml 越来越繁琐 * 您总是复制一大坨相同的内容 此时您不尽感叹道【我可不想当 YAML 工程师】。 ## .cnb.yml 代码提示和语法校验 [配置在 VSCode 和 Jetbrains 种配置 JSON Schema](https://docs.cnb.cool/zh/configuration.html) ## YAML 的复用 这里将介绍 YAML 的锚点(Anchors)和别名(Aliases),来帮助我们编写出可复用的 YAML 问题提升 YAML 的可维护性。 在阅读下面文章前,必须提前推荐两个工具帮助我们识别使用锚点后我们的 YAML 是否符合预期: - [https://jsonformatter.org/yaml-parser](https://jsonformatter.org/yaml-parser) - [https://yaml-online-parser.appspot.com/](https://yaml-online-parser.appspot.com/) ### 场景一: 一次 master push 事件分别在 amd 和 arm 中构建 优化前: ``` master: push: - name: amd runner: tags: cnb:arch:amd64 services: - docker stages: - name: uname script: uname -a - name: hello world script: echo "hello world" - name: arm runner: tags: cnb:arch:arm64:v8 services: - docker stages: - name: uname script: uname -a - name: hello world script: echo "hello world" ``` 优化后: ``` # 锚点推荐 . 开头避免被识别成 branch 和 tag 名称 .build_script: &build_script - name: uname script: uname -a - name: hello world script: echo "hello world" master: push: - name: amd runner: tags: cnb:arch:amd64 services: - docker stages: *build_script - name: arm runner: tags: cnb:arch:arm64:v8 services: - docker stages: *build_script ```