mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
temporary remove delete from nightly
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5a1003f6ed
commit
09523a4bca
|
@ -117,14 +117,14 @@ jobs:
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'Ubuntu'
|
artifactName: 'Ubuntu'
|
||||||
targetPath: tmp
|
targetPath: tmp
|
||||||
- task: GitHubRelease@0
|
# - task: GitHubRelease@0
|
||||||
inputs:
|
# inputs:
|
||||||
gitHubConnection: Z3GitHub
|
# gitHubConnection: Z3GitHub
|
||||||
repositoryName: 'Z3Prover/z3'
|
# repositoryName: 'Z3Prover/z3'
|
||||||
action: 'delete'
|
# action: 'delete'
|
||||||
# target: '$(Build.SourceVersion)'
|
## target: '$(Build.SourceVersion)'
|
||||||
tagSource: 'manual'
|
# tagSource: 'manual'
|
||||||
tag: 'Nightly'
|
# tag: 'Nightly'
|
||||||
- task: GitHubRelease@0
|
- task: GitHubRelease@0
|
||||||
inputs:
|
inputs:
|
||||||
gitHubConnection: Z3GitHub
|
gitHubConnection: Z3GitHub
|
||||||
|
|
|
@ -5,6 +5,7 @@ import platform
|
||||||
import subprocess
|
import subprocess
|
||||||
import multiprocessing
|
import multiprocessing
|
||||||
import re
|
import re
|
||||||
|
import glob
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
from distutils.util import get_platform
|
from distutils.util import get_platform
|
||||||
from distutils.errors import LibError
|
from distutils.errors import LibError
|
||||||
|
@ -142,6 +143,8 @@ def _copy_bins():
|
||||||
os.mkdir(HEADERS_DIR)
|
os.mkdir(HEADERS_DIR)
|
||||||
shutil.copy(os.path.join(BUILD_DIR, LIBRARY_FILE), LIBS_DIR)
|
shutil.copy(os.path.join(BUILD_DIR, LIBRARY_FILE), LIBS_DIR)
|
||||||
shutil.copy(os.path.join(BUILD_DIR, EXECUTABLE_FILE), BINS_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 header_dir in HEADER_DIRS:
|
||||||
for fname in os.listdir(header_dir):
|
for fname in os.listdir(header_dir):
|
||||||
|
|
Loading…
Reference in a new issue