Skip to content
Snippets Groups Projects
Commit bc4c1137 authored by rishwanth1995's avatar rishwanth1995
Browse files

appveyor check

parent 59c13965
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ services: ...@@ -30,7 +30,7 @@ services:
build_script: build_script:
- python setupLibs.py - python setupLibs.py
- python %TSK_HOME%\win32\updateBuildLibs.py -m - python win32\updateBuildLibs.py -m
- ps: ant -version - ps: ant -version
- ps: pushd bindings/java - ps: pushd bindings/java
- cmd: ant dist-PostgreSQL - cmd: ant dist-PostgreSQL
......
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
CURRENT_PATH = os.getcwd() CURRENT_PATH = os.getcwd()
# save the build log in the output directory # save the build log in the output directory
LOG_PATH = os.path.join(CURRENT_PATH, 'output', time.strftime("%Y.%m.%d-%H.%M.%S")) LOG_PATH = os.path.join(CURRENT_PATH, 'output', time.strftime("%Y.%m.%d-%H.%M.%S"))
APPVEYOR = os.getenv("APPVEYOR",False)
MINIMAL = False MINIMAL = False
def pullAndBuildAllDependencies(branch): def pullAndBuildAllDependencies(branch):
''' '''
...@@ -210,7 +209,11 @@ def buildTSK(wPlatform, target): ...@@ -210,7 +209,11 @@ def buildTSK(wPlatform, target):
print ("Building TSK " + str(wPlatform) + "-bit " + target + " build.") print ("Building TSK " + str(wPlatform) + "-bit " + target + " build.")
sys.stdout.flush() sys.stdout.flush()
if(APPVEYOR): TSK_HOME = os.getenv("TSK_HOME",False)
if not TSK_HOME:
print("Please set the TSK_HOME env variable")
else:
os.chdir(os.path.join(os.getenv("TSK_HOME"),"win32")) os.chdir(os.path.join(os.getenv("TSK_HOME"),"win32"))
vs = [] vs = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment