Skip to content

Commit

Permalink
Alternative syntax required for some bizarre reason
Browse files Browse the repository at this point in the history
  • Loading branch information
puremourning committed Aug 3, 2019
1 parent 53f61d1 commit eefb0c5
Showing 1 changed file with 19 additions and 14 deletions.
33 changes: 19 additions & 14 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,36 @@ stages:
image: 'puremourning/vimspector:test'
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
steps:
- bash: go get -u github.com/go-delve/delve/cmd/dlv
noProfile: false
noRc: false
- task: bash@3
inputs:
targetType: inline
script: go get -u github.com/go-delve/delve/cmd/dlv
noProfile: false
noRc: false
displayName: 'Install Delve for Go'

- bash: python3 install_gadget.py --all
noProfile: false
noRc: false
- task: bash@3
inputs:
targetType: inline
script: python3 install_gadget.py --all
noProfile: false
noRc: false
displayName: 'Install gadgets'

- bash: vim --version
noProfile: false
noRc: false
displayName: 'Print vim version information'

- bash: ./run_tests
noProfile: false
noRc: false
displayName: 'Run the tests'
- task: bash@3
inputs:
targetType: inline
script: ./run_tests
noProfile: false
noRc: false
env:
VIMSPECTOR_MIMODE: gdb
displayName: 'Run the tests'

- bash: ./make_package linux $(Build.SourceVersion)
noProfile: false
noRc: false
displayName: 'Package'

- task: PublishPipelineArtifact@0
Expand Down

0 comments on commit eefb0c5

Please sign in to comment.