Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
Split passes
Browse files Browse the repository at this point in the history
  • Loading branch information
ooeygui committed Oct 8, 2021
1 parent f72fd7a commit 31c37f7
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,34 @@ jobs:
pushd src
: BUGBUG need to build twice due to the dotnet generator
build.cmd /unity
popd
displayName: Build ROS2 Components x64 (Pass 0)
continueOnError: true
workingDirectory: '$(Build.StagingDirectory)\_'
- script: |
pushd src
: BUGBUG need to build twice due to the dotnet generator
build.cmd /x64
popd
displayName: Build ROS2 Components x64 (Pass 1)
continueOnError: false
workingDirectory: '$(Build.StagingDirectory)\_'
- script: |
pushd src
: BUGBUG need to build twice due to the dotnet generator
build.cmd /arm64
popd
displayName: Build ROS2 Components Attempt 1
displayName: Build ROS2 Components arm64 (Pass 0)
continueOnError: true
workingDirectory: '$(Build.StagingDirectory)\_'
- script: |
pushd src
: BUGBUG need to build twice due to the dotnet generator
build.cmd /unity
build.cmd /x64
build.cmd /arm64
popd
displayName: Build ROS2 Components Attempt 2
displayName: Build ROS2 Components arm64 (Pass 1)
continueOnError: false
workingDirectory: '$(Build.StagingDirectory)\_'
workingDirectory: '$(Build.StagingDirectory)\_'
- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: $(Build.StagingDirectory)\_\target\log
Expand Down

0 comments on commit 31c37f7

Please sign in to comment.