diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cc60a604..2294985b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -137,22 +137,16 @@ jobs: steps: - checkout: self submodules: false - - task: Docker@2 - displayName: Build Docker Image - inputs: - command: build - dockerfile: '.github/workflows/Dockerfile.GPU-manylinux2014' - tags: | - manylinux-latest:latest - buildContext: '$(Build.SourcesDirectory)' - script: | mkdir -p ${BUILD_SOURCESDIRECTORY}/output + docker build -t manylinux-builder \ + -f .github/workflows/Dockerfile.GPU-manylinux2014 . docker run --rm \ -v ${BUILD_SOURCESDIRECTORY}/output:/output \ - manylinux-latest:latest \ + manylinux-builder \ /bin/bash -c "cp /work/build/src/mmseqs /output/" displayName: Run Docker Container and Copy Binary - - task: PublishPipelineArtifact@1 + - task: PublishPipelineArtifact@0 inputs: targetPath: $(Build.SourcesDirectory)/output/mmseqs artifactName: mmseqs-linux-gpu