File tree 2 files changed +11
-8
lines changed
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -117,14 +117,14 @@ jobs:
117
117
inputs :
118
118
artifactName : ' Ubuntu'
119
119
targetPath : tmp
120
- - task : GitHubRelease@0
121
- inputs :
122
- gitHubConnection : Z3GitHub
123
- repositoryName : ' Z3Prover/z3'
124
- action : ' delete'
125
- # target: '$(Build.SourceVersion)'
126
- tagSource : ' manual'
127
- tag : ' Nightly'
120
+ # - task: GitHubRelease@0
121
+ # inputs:
122
+ # gitHubConnection: Z3GitHub
123
+ # repositoryName: 'Z3Prover/z3'
124
+ # action: 'delete'
125
+ # # target: '$(Build.SourceVersion)'
126
+ # tagSource: 'manual'
127
+ # tag: 'Nightly'
128
128
- task : GitHubRelease@0
129
129
inputs :
130
130
gitHubConnection : Z3GitHub
Original file line number Diff line number Diff line change 5
5
import subprocess
6
6
import multiprocessing
7
7
import re
8
+ import glob
8
9
from setuptools import setup
9
10
from distutils .util import get_platform
10
11
from distutils .errors import LibError
@@ -142,6 +143,8 @@ def _copy_bins():
142
143
os .mkdir (HEADERS_DIR )
143
144
shutil .copy (os .path .join (BUILD_DIR , LIBRARY_FILE ), LIBS_DIR )
144
145
shutil .copy (os .path .join (BUILD_DIR , EXECUTABLE_FILE ), BINS_DIR )
146
+ for filepath in glob .glob (os .path .join (BUILD_DIR , "msvcp*" )) + glob .glob (os .path .join (BUILD_DIR , "vcomp*" )):
147
+ shutil .copy (filepath , LIBS_DIR )
145
148
146
149
for header_dir in HEADER_DIRS :
147
150
for fname in os .listdir (header_dir ):
You can’t perform that action at this time.
0 commit comments