Skip to content

Commit 09523a4

Browse files
temporary remove delete from nightly
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent 5a1003f commit 09523a4

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

scripts/nightly.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@ jobs:
117117
inputs:
118118
artifactName: 'Ubuntu'
119119
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'
128128
- task: GitHubRelease@0
129129
inputs:
130130
gitHubConnection: Z3GitHub

src/api/python/setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import subprocess
66
import multiprocessing
77
import re
8+
import glob
89
from setuptools import setup
910
from distutils.util import get_platform
1011
from distutils.errors import LibError
@@ -142,6 +143,8 @@ def _copy_bins():
142143
os.mkdir(HEADERS_DIR)
143144
shutil.copy(os.path.join(BUILD_DIR, LIBRARY_FILE), LIBS_DIR)
144145
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)
145148

146149
for header_dir in HEADER_DIRS:
147150
for fname in os.listdir(header_dir):

0 commit comments

Comments
 (0)