Update master.cfg

`wrappers/Julia/0.3/CoolProp.jl` is no more needed.
(both files have been merged on a single one compatible for both Julia versions)
This commit is contained in:
JonWel
2015-03-22 11:36:32 +01:00
parent 8987bfd60e
commit 8d1ca34522

View File

@@ -630,9 +630,7 @@ def julia_builder(gitMode = 'incremental'):
# Clean the install_root
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))
# 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/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"))