File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,22 @@ stages:
3131 parameters :
3232 run_tests : true
3333 cmake_stepvars : ' -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=1 -DCMAKE_POLICY_DEFAULT_CMP0069=NEW'
34- - job : manylinux
34+ - job : manylinux2010
3535 pool : { vmImage: 'ubuntu-16.04' }
3636 container : quay.io/pypa/manylinux2010_x86_64:latest
3737 steps :
3838 - bash : CFLAGS="-flto -static-libstdc++ -std=c++14" ./standalone_compilation_linux.sh
3939 - bash : strip --strip-unneeded liblsl.so
4040 - publish : liblsl.so
4141 artifact : manylinux2010
42+ - job : manylinux1
43+ pool : { vmImage: 'ubuntu-16.04' }
44+ container : quay.io/pypa/manylinux1_x86_64:latest
45+ steps :
46+ - bash : CFLAGS="-flto -static-libstdc++ -std=c++11" ./standalone_compilation_linux.sh
47+ - bash : strip --strip-unneeded liblsl.so
48+ - publish : liblsl.so
49+ artifact : manylinux1
4250- stage : Upload
4351 jobs :
4452 - job : Upload
@@ -48,7 +56,9 @@ stages:
4856 - task : DownloadPipelineArtifact@2
4957 inputs :
5058 targetPath : upload
51- - bash : mv upload/manylinux2010/liblsl.so upload/liblsl-manylinux2010-liblsl64.so
59+ - bash : |
60+ mv upload/manylinux2010/liblsl.so upload/liblsl-manylinux2010-liblsl64.so
61+ mv upload/manylinux1/liblsl.so upload/liblsl-manylinux1-liblsl64.so
5262 - task : GithubRelease@0
5363 inputs :
5464 action : edit
You can’t perform that action at this time.
0 commit comments