simonster / Reexport.jl

Julia macro for re-exporting one module from another
Other
161 stars 19 forks source link

Add precompile directive #3

Closed timholy closed 9 years ago

timholy commented 9 years ago

Needed to avoid test failures like

...
INFO: Recompiling stale cache file /home/travis/.julia/lib/v0.4/DataFrames.ji for module DataFrames.
INFO: Recompiling stale cache file /home/travis/.julia/lib/v0.4/DataArrays.ji for module DataArrays.
WARNING: Module Reexport uuid did not match cache file
WARNING: deserialization checks failed while attempting to load cache from /home/travis/.julia/lib/v0.4/DataArrays.ji
INFO: Recompiling stale cache file /home/travis/.julia/lib/v0.4/DataArrays.ji for module DataArrays.
WARNING: Module Reexport uuid did not match cache file
ERROR: LoadError: LoadError: __precompile__(true) but require failed to create a precompiled cache file
...

over at https://travis-ci.org/dcjones/Gadfly.jl/jobs/78317591. (Needs a new release tagged, too.)

simonster commented 9 years ago

Thanks!