Updated Julia config to match the new folder

wrappers/Julia/CoolProp.jl for Julia 0.4 and upper
wrappers/Julia/0.3/CoolProp.jl for Julia 0.3 and lower
This commit is contained in:
JonWel
2015-02-19 14:29:20 +01:00
parent 5c0c2ee330
commit 4bd84ca19f

View File

@@ -630,10 +630,9 @@ def julia_builder(gitMode = 'incremental'):
factory.addStep(RemoveDirectory(dir="build/install_root/Julia", haltOnFailure = True))
factory.addStep(MakeDirectory(dir='build/install_root/Julia', haltOnFailure = True))
factory.addStep(MakeDirectory(dir='build/install_root/Julia/0.3', haltOnFailure = True))
factory.addStep(MakeDirectory(dir='build/install_root/Julia/0.4', haltOnFailure = True))
# Copy other files
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/0.3/CoolProp.jl", "install_root/Julia/0.3"], workdir = 'build', haltOnFailure = True))
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/0.4/CoolProp.jl", "install_root/Julia/0.4"], workdir = 'build', haltOnFailure = True))
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/CoolProp.jl", "install_root/Julia/"], workdir = 'build', haltOnFailure = True))
# Upload the files - TODO: Is this the correct directory?
factory.addStep(DirectoryUpload(slavesrc="install_root",masterdest=masterdestLocation,url="binaries",compress="bz2"))
return factory