Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder committed Apr 26, 2024
1 parent 59397b2 commit 333fb0e
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions eng/pipelines/armstrong-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@ jobs:
inputs:
version: '1.22.2'

- bash: |
ls -al $(Build.SourcesDirectory)
ls -al $(Build.SourcesDirectory)/eng
ls -al $(Build.SourcesDirectory)/eng/scripts
displayName: bash list eng/scripts
- pwsh: |
Get-ChildItem -Path $(Build.SourcesDirectory)
Get-ChildItem -Path $(Build.SourcesDirectory)/eng
Get-ChildItem -Path $(Build.SourcesDirectory)/eng/scripts
displayName: pwsh list eng/scripts
- script: |
mkdir -p '$(GOBIN)'
mkdir -p '$(GOPATH)/pkg'
Expand All @@ -41,11 +53,35 @@ jobs:
echo '##vso[task.prependpath]$(GOROOT)/bin'
displayName: 'Set up the Go workspace'
- bash: |
ls -al $(Build.SourcesDirectory)
ls -al $(Build.SourcesDirectory)/eng
ls -al $(Build.SourcesDirectory)/eng/scripts
displayName: bash list eng/scripts
- pwsh: |
Get-ChildItem -Path $(Build.SourcesDirectory)
Get-ChildItem -Path $(Build.SourcesDirectory)/eng
Get-ChildItem -Path $(Build.SourcesDirectory)/eng/scripts
displayName: pwsh list eng/scripts
- script: |
go version
go install github.com/azure/armstrong@109e9a46faa57c2c5af762019342dff3030f7d79
displayName: 'Install go dependencies'
- bash: |
ls -al $(Build.SourcesDirectory)
ls -al $(Build.SourcesDirectory)/eng
ls -al $(Build.SourcesDirectory)/eng/scripts
displayName: bash list eng/scripts
- pwsh: |
Get-ChildItem -Path $(Build.SourcesDirectory)
Get-ChildItem -Path $(Build.SourcesDirectory)/eng
Get-ChildItem -Path $(Build.SourcesDirectory)/eng/scripts
displayName: pwsh list eng/scripts
- pwsh: |
$(Build.SourcesDirectory)/eng/scripts/Armstrong-Validation.ps1 -Verbose
displayName: Armstrong Validation
Expand Down

0 comments on commit 333fb0e

Please sign in to comment.