Alternative syntax required for some bizarre reason

This commit is contained in:
Ben Jackson 2019-08-01 22:20:53 +01:00
commit eefb0c5c6b

View file

@ -37,31 +37,36 @@ stages:
image: 'puremourning/vimspector:test' image: 'puremourning/vimspector:test'
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
steps: steps:
- bash: go get -u github.com/go-delve/delve/cmd/dlv - task: bash@3
noProfile: false inputs:
noRc: false targetType: inline
script: go get -u github.com/go-delve/delve/cmd/dlv
noProfile: false
noRc: false
displayName: 'Install Delve for Go' displayName: 'Install Delve for Go'
- bash: python3 install_gadget.py --all - task: bash@3
noProfile: false inputs:
noRc: false targetType: inline
script: python3 install_gadget.py --all
noProfile: false
noRc: false
displayName: 'Install gadgets' displayName: 'Install gadgets'
- bash: vim --version - bash: vim --version
noProfile: false
noRc: false
displayName: 'Print vim version information' displayName: 'Print vim version information'
- bash: ./run_tests - task: bash@3
noProfile: false inputs:
noRc: false targetType: inline
displayName: 'Run the tests' script: ./run_tests
noProfile: false
noRc: false
env: env:
VIMSPECTOR_MIMODE: gdb VIMSPECTOR_MIMODE: gdb
displayName: 'Run the tests'
- bash: ./make_package linux $(Build.SourceVersion) - bash: ./make_package linux $(Build.SourceVersion)
noProfile: false
noRc: false
displayName: 'Package' displayName: 'Package'
- task: PublishPipelineArtifact@0 - task: PublishPipelineArtifact@0