-
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
[AUTO] Update precompiles
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
should_precompile = true | ||
|
||
|
||
# Don't edit the following! Instead change the script for `snoop_bot`. | ||
ismultios = true | ||
ismultiversion = true | ||
# precompile_enclosure | ||
@static if !should_precompile | ||
# nothing | ||
elseif !ismultios && !ismultiversion | ||
include("../deps/SnoopCompile/precompile/precompile_Plots.jl") | ||
_precompile_() | ||
else | ||
@static if Sys.islinux() | ||
@static if v"1.3.0-DEV" <= VERSION <= v"1.3.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.3/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.4.0-DEV" <= VERSION <= v"1.4.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.5.0-DEV" <= VERSION <= v"1.5.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.6.0-DEV" <= VERSION <= v"1.6.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.6/precompile_Plots.jl") | ||
_precompile_() | ||
else | ||
include("../deps/SnoopCompile/precompile/linux/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
end | ||
|
||
elseif Sys.iswindows() | ||
@static if v"1.3.0-DEV" <= VERSION <= v"1.3.9" | ||
include("../deps/SnoopCompile/precompile/windows/1.3/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.4.0-DEV" <= VERSION <= v"1.4.9" | ||
include("../deps/SnoopCompile/precompile/windows/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.5.0-DEV" <= VERSION <= v"1.5.9" | ||
include("../deps/SnoopCompile/precompile/windows/1.5/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.6.0-DEV" <= VERSION <= v"1.6.9" | ||
include("../deps/SnoopCompile/precompile/windows/1.6/precompile_Plots.jl") | ||
_precompile_() | ||
else | ||
include("../deps/SnoopCompile/precompile/windows/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
end | ||
|
||
elseif Sys.isapple() | ||
@static if v"1.3.0-DEV" <= VERSION <= v"1.3.9" | ||
include("../deps/SnoopCompile/precompile/apple/1.3/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.4.0-DEV" <= VERSION <= v"1.4.9" | ||
include("../deps/SnoopCompile/precompile/apple/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.5.0-DEV" <= VERSION <= v"1.5.9" | ||
include("../deps/SnoopCompile/precompile/apple/1.5/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.6.0-DEV" <= VERSION <= v"1.6.9" | ||
include("../deps/SnoopCompile/precompile/apple/1.6/precompile_Plots.jl") | ||
_precompile_() | ||
else | ||
include("../deps/SnoopCompile/precompile/apple/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
end | ||
|
||
else | ||
@static if v"1.3.0-DEV" <= VERSION <= v"1.3.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.3/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.4.0-DEV" <= VERSION <= v"1.4.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.5.0-DEV" <= VERSION <= v"1.5.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl") | ||
_precompile_() | ||
elseif v"1.6.0-DEV" <= VERSION <= v"1.6.9" | ||
include("../deps/SnoopCompile/precompile/linux/1.6/precompile_Plots.jl") | ||
_precompile_() | ||
else | ||
include("../deps/SnoopCompile/precompile/linux/1.4/precompile_Plots.jl") | ||
_precompile_() | ||
end | ||
|
||
end | ||
|
||
end # precompile_enclosure |