File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -137,22 +137,16 @@ jobs:
137
137
steps :
138
138
- checkout : self
139
139
submodules : false
140
- - task : Docker@2
141
- displayName : Build Docker Image
142
- inputs :
143
- command : build
144
- dockerfile : ' .github/workflows/Dockerfile.GPU-manylinux2014'
145
- tags : |
146
- manylinux-latest:latest
147
- buildContext : ' $(Build.SourcesDirectory)'
148
140
- script : |
149
141
mkdir -p ${BUILD_SOURCESDIRECTORY}/output
142
+ docker build -t manylinux-builder \
143
+ -f .github/workflows/Dockerfile.GPU-manylinux2014 .
150
144
docker run --rm \
151
145
-v ${BUILD_SOURCESDIRECTORY}/output:/output \
152
- manylinux-latest:latest \
146
+ manylinux-builder \
153
147
/bin/bash -c "cp /work/build/src/mmseqs /output/"
154
148
displayName: Run Docker Container and Copy Binary
155
- - task : PublishPipelineArtifact@1
149
+ - task : PublishPipelineArtifact@0
156
150
inputs :
157
151
targetPath : $(Build.SourcesDirectory)/output/mmseqs
158
152
artifactName : mmseqs-linux-gpu
You can’t perform that action at this time.
0 commit comments