File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -145,15 +145,13 @@ jobs:
145145 tags : |
146146 manylinux-latest:latest
147147 buildContext : ' $(Build.SourcesDirectory)'
148- - script : mkdir -p ${BUILD_SOURCESDIRECTORY}/output
149- - task : Docker@2
150- displayName : Run Build in Docker
151- inputs :
152- command : run
153- imageName : ' manylinux-latest:latest'
154- options : >
155- -v $(Build.SourcesDirectory)/output:/output
156- arguments : /bin/bash -c "cp /work/build/src/mmseqs /output/"
148+ - script : |
149+ mkdir -p ${BUILD_SOURCESDIRECTORY}/output
150+ docker run --rm \
151+ -v ${BUILD_SOURCESDIRECTORY}/output:/output \
152+ manylinux-latest:latest \
153+ /bin/bash -c "cp /work/build/src/mmseqs /output/"
154+ displayName: Run Docker Container and Copy Binary
157155 - task : PublishPipelineArtifact@1
158156 inputs :
159157 targetPath : $(Build.SourcesDirectory)/output/mmseqs
You can’t perform that action at this time.
0 commit comments