aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSyoyo Fujita <syoyo@lighttransport.com>2020-05-28 13:32:17 +0900
committerSyoyo Fujita <syoyo@lighttransport.com>2020-05-28 13:32:17 +0900
commite11207bc34e851604cbcd482aa2781ce5669a33e (patch)
tree3e9be8c43294e2a6445d31877a7db154cc6478a8
parentfb8e0317be4d4b27fa69240769a59db4be380058 (diff)
downloadtinyobjloader-e11207bc34e851604cbcd482aa2781ce5669a33e.tar.gz
Use PublishBuildArtifacts: https://stackoverflow.com/questions/58841733/how-to-debug-azure-devops-task-publishpipelineartifact-when-one-or-more-errors-o
-rw-r--r--azure-pipelines.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index f693a5e..73126e9 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -39,10 +39,10 @@ jobs:
cp *.h python
cd python
cibuildwheel --output-dir wheelhouse .
- - task: PublishPipelineArtifact@1
- inputs:
+ - task: PublishBuildArtifacts@1
+ inputs:
path: $(System.DefaultWorkingDirectory)/python/wheelhouse
- artifact: tinyobjDeployLinux
+ artifactName: tinyobjDeployLinux
- job: macos
pool: {vmImage: 'macOS-10.15'}
@@ -58,10 +58,10 @@ jobs:
cp *.h python
cd python
cibuildwheel --output-dir wheelhouse .
- - task: PublishPipelineArtifact@1
+ - task: PublishBuildArtifacts@1
inputs:
path: $(System.DefaultWorkingDirectory)/python/wheelhouse
- artifact: tinyobjDeployMacOS
+ artifactName: tinyobjDeployMacOS
- job: windows
pool: {vmImage: 'vs2017-win2016'}
@@ -76,10 +76,10 @@ jobs:
cp *.h python
cd python
cibuildwheel --output-dir wheelhouse .
- - task: PublishPipelineArtifact@1
+ - task: PublishBuildArtifacts@1
inputs:
path: $(System.DefaultWorkingDirectory)/python/wheelhouse
- artifact: tinyobjDeployWindows
+ artifactName: tinyobjDeployWindows
- job: deployPyPI
# Based on vispy: https://github.com/vispy/vispy/blob/master/azure-pipelines.yml