Skip to content

Commit

Permalink
fixing path #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Dec 8, 2023
1 parent 9668288 commit f4df58e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/build_config/dailyBuildMSVC.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ def main(options, platform="x64"):
filter_setup_py(os.path.join(SUMO_HOME, "build_config", "setup-sumo.py"), os.path.join(SUMO_HOME, "setup.py"))
build.ProjectBuilder(SUMO_HOME).build("wheel", {"--plat-name":"win_amd64"})
f = glob.glob(os.path.join(SUMO_HOME, "dist", "eclipse_sumo-*"))[0]
shutil.copy(f, os.path.join(options.remoteDir, f.replace("cp38-cp38", "py2.py3-none")))
shutil.copy(f, os.path.join(options.remoteDir, "wheels",
os.path.basename(f).replace("cp38-cp38", "py2.py3-none")))

debug_handler = status.set_rotating_log(makeAllLog, log_handler)
ret = status.log_subprocess(["cmake", "--build", ".", "--config", "Debug"], cwd=buildDir)
Expand Down

0 comments on commit f4df58e

Please sign in to comment.