Skip to content

Commit

Permalink
temporary remove delete from nightly
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Oct 14, 2019
1 parent 5a1003f commit 09523a4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scripts/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ jobs:
inputs:
artifactName: 'Ubuntu'
targetPath: tmp
- task: GitHubRelease@0
inputs:
gitHubConnection: Z3GitHub
repositoryName: 'Z3Prover/z3'
action: 'delete'
# target: '$(Build.SourceVersion)'
tagSource: 'manual'
tag: 'Nightly'
# - task: GitHubRelease@0
# inputs:
# gitHubConnection: Z3GitHub
# repositoryName: 'Z3Prover/z3'
# action: 'delete'
## target: '$(Build.SourceVersion)'
# tagSource: 'manual'
# tag: 'Nightly'
- task: GitHubRelease@0
inputs:
gitHubConnection: Z3GitHub
Expand Down
3 changes: 3 additions & 0 deletions src/api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import subprocess
import multiprocessing
import re
import glob
from setuptools import setup
from distutils.util import get_platform
from distutils.errors import LibError
Expand Down Expand Up @@ -142,6 +143,8 @@ def _copy_bins():
os.mkdir(HEADERS_DIR)
shutil.copy(os.path.join(BUILD_DIR, LIBRARY_FILE), LIBS_DIR)
shutil.copy(os.path.join(BUILD_DIR, EXECUTABLE_FILE), BINS_DIR)
for filepath in glob.glob(os.path.join(BUILD_DIR, "msvcp*")) + glob.glob(os.path.join(BUILD_DIR, "vcomp*")):
shutil.copy(filepath, LIBS_DIR)

for header_dir in HEADER_DIRS:
for fname in os.listdir(header_dir):
Expand Down

0 comments on commit 09523a4

Please sign in to comment.