Merge pull request #3242 from KristofferC/kc/reenable_precompilation

reenable precompiles
This commit is contained in:
Daniel Schwabeneder 2021-01-25 16:39:18 +00:00 committed by GitHub
commit 8a2a41f75b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 44 deletions

View File

@ -25,6 +25,8 @@ jobs:
- name: Run benchmarks - name: Run benchmarks
run: $TESTCMD -e 'using BenchmarkCI; BenchmarkCI.judge()' run: $TESTCMD -e 'using BenchmarkCI; BenchmarkCI.judge()'
- name: Print judgement
run: julia -e 'using BenchmarkCI; BenchmarkCI.displayjudgement()'
- name: Post results - name: Post results
run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()' run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()'
env: env:

View File

@ -1,44 +1,3 @@
should_precompile = true include("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl")
_precompile_()
# 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
@static if (isfile("../deps/SnoopCompile/precompile/precompile_Plots.jl"))
include("../deps/SnoopCompile/precompile/precompile_Plots.jl")
_precompile_()
end
else
@static if Sys.islinux()
@static if v"1.5.0-DEV" <= VERSION <= v"1.5.9"
@static if (isfile("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl"))
include("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl")
_precompile_()
end
else
@static if (isfile("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl"))
include("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl")
_precompile_()
end
end
else
@static if v"1.5.0-DEV" <= VERSION <= v"1.5.9"
@static if (isfile("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl"))
include("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl")
_precompile_()
end
else
@static if (isfile("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl"))
include("../deps/SnoopCompile/precompile/linux/1.5/precompile_Plots.jl")
_precompile_()
end
end
end
end # precompile_enclosure