-
Notifications
You must be signed in to change notification settings - Fork 577
Closed
Description
Expected behavior
buildx should not write to stderr during a successful build
Steps to reproduce
I'm using Azure Pipelines to build images using buildx. Azure Pipelines has a property to fail the build if a step writes to stderr.
trigger:
- main
- develop
pool:
vmImage: ubuntu-latest
stages:
- stage: Build
jobs:
- job: BuildDocker
steps:
- task: Docker@2
displayName: Docker Login
inputs:
containerRegistry: 'DockerHub'
command: 'login'
addPipelineData: false
addBaseImageData: false
- script: ./build.sh
displayName: Build & Push Image
# buildx writes to stderr
# failOnStderr: true
Metadata
Metadata
Assignees
Labels
No labels