我试图创建一个github工作流yaml来构建一个x86_64-pc-linux-gcc工具链,但我一直得到一个错误"无法解析为yaml: yaml:第102行:没有找到预期的关键yaml-syntax ";但我似乎找不到问题所在。
链接到我的邮箱:
https://github.com/7dog123/GCC-toolchain/blob/master/.github/workflows/cygwin.yml
您的YAML有几个错误。
例如:
- name: configure GCC
run: |
cd gcc
mkdir gcc-${{ env.TARGET_ALIAS }}
## On x86_64 hosts, set the default directory name for 64-bit libraries to “lib”
case $(uname -m) in
x86_64)
...
以#
开头的行与上面的缩进不匹配,它结束了字面值字符串块。
同样的错误在整个文档中出现多次,在写入时:
- 第107行
- 在第124-128行
- 第169 ~ 170行
- 第186 ~ 188行