小编Ray*_*pew的帖子

Azure DevOps:如何消除 Azure DevOps 中的警告“为触发器设置的标签与管道不匹配”?

我设置了两个 Azure DevOps 管道,以便管道一的完成触发管道二。它工作正常,但会生成不必要的错误消息。

所有最近的管道两个版本都在此页面上列出(不是真正的链接,不必费心点击它):https ://dev.azure.com/mycompany/myproject/_build?definitionId=29

此页面上列出了任何触发器问题(不是真正的链接,请勿点击它):https ://dev.azure.com/mycompany/myproject/_build?definitionId=29&view=triggerIssues

似乎管道一 -> 管道二的每次运行都会将此警告添加到“触发器问题”页面:“为触发器设置的标签与管道不匹配”。这只是一个警告,不是错误,管道二执行成功。但是我怎样才能消除这个警告信息呢?

管道资源在管道二中指定如下:

resources:
  pipelines:
  - pipeline: pipeline-one
    source: mycompany.pipeline-one
    # project: myproject # optional - only required if first pipeline is in a different project
    trigger:
      enabled: true
      branches:
        include:
        - master
        - develop
        - release_*
Run Code Online (Sandbox Code Playgroud)

未指定标签,因为未使用标签。

我已查看以下文档但没有找到答案。我可能错过了文档中的某些内容。

tags warnings azure-devops azure-pipelines

6
推荐指数
0
解决办法
702
查看次数

如果找不到www.example.com,为什么BitBake错误?

BitBake对我来说失败了,因为它找不到https://www.example.com

我的计算机是运行本机Xubuntu 18.04的x86-64。网络连接是通过DSL。我正在使用最新版本的OpenEmbedded / Yocto工具链。

这是我运行BitBake时得到的响应:

$ bitbake -k core-image-sato
WARNING: Host distribution "ubuntu-18.04" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.
ERROR:  OE-core's config sanity checker detected a potential misconfiguration.
Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
Following is the list of potential problems / advisories:

Fetcher failure for …
Run Code Online (Sandbox Code Playgroud)

bitbake yocto

4
推荐指数
2
解决办法
2350
查看次数

如何在启动输出或 /etc/issue 中包含镜像层的 git 修订版?

我正在为 SBC 创建 Poky 映像,并且希望用户能够查找用于创建映像的配方文件的 SHA1 ID。

菜谱内容如下:

SUMMARY = "Toradex Embedded Linux Console Sporian Yocto version"
DESCRIPTION = "A Yocto Poky build derived from core-image-minimal"

LICENSE = "MIT"

#start of the resulting deployable tarball name
export IMAGE_BASENAME = "Sporian-Console-Image-Yocto"
IMAGE_NAME_apalis-imx6 = "Apalis-iMX6_${IMAGE_BASENAME}"

require /home/rdepew/workspace/oe-core3/poky/meta/recipes-core/images/core-image-minimal.bb

IMAGE_INSTALL += " \
    packagegroup-core-ssh-openssh \
    sqlite3 \
    avro-c \
"
Run Code Online (Sandbox Code Playgroud)

以下是 SBC 启动时的控制台输出:

Poky (Yocto Project Reference Distro) 2.4.3 apalis-imx6 /dev/ttymxc0

apalis-imx6 login: root
root@apalis-imx6:~# uname -a
Linux apalis-imx6 4.1.44-2.7.4+gb1555bfbf388 #1 SMP Tue Oct …
Run Code Online (Sandbox Code Playgroud)

git bitbake yocto

4
推荐指数
1
解决办法
3851
查看次数

标签 统计

bitbake ×2

yocto ×2

azure-devops ×1

azure-pipelines ×1

git ×1

tags ×1

warnings ×1