From 1d0d927693c2ef60d7880ab306beb25115a53dcb Mon Sep 17 00:00:00 2001 From: Philipp Wagner Date: Fri, 1 Nov 2019 15:18:54 +0000 Subject: [PATCH] [ci] Move spiflash binary in release artifacts To make the quickstart guide more consistent with the self-built option we want to have the spiflash binary in a sw/host/spiflash/spiflash, and not in sw/host/bin/spiflash. --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d7f62a2acb949..3b510118fca13 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -146,8 +146,8 @@ jobs: make -C sw/host/spiflash clean all # TODO: build system updates needed to copy build output to a dist # staging directory. - mkdir -p $(Build.ArtifactStagingDirectory)/dist/sw/host/bin - cp sw/host/spiflash/spiflash $(Build.ArtifactStagingDirectory)/dist/sw/host/bin + mkdir -p $(Build.ArtifactStagingDirectory)/dist/sw/host/spiflash + cp sw/host/spiflash/spiflash $(Build.ArtifactStagingDirectory)/dist/sw/host/spiflash displayName: 'Build host targets' - bash: | cd $(Build.ArtifactStagingDirectory)