From eefb0c5c6bed2765a7dcd9fef5a6cacc313e231b Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Thu, 1 Aug 2019 22:20:53 +0100 Subject: [PATCH] Alternative syntax required for some bizarre reason --- azure-pipelines.yml | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index def95e0..44d7112 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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