be explicit about julia versions

This commit is contained in:
Daniel Schwabeneder 2020-06-30 19:25:59 +02:00
parent 4f791a394e
commit 16618430ed
3 changed files with 4 additions and 14 deletions

View File

@ -21,8 +21,8 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
version: # NOTE: the versions below should match those in your botconfig version: # NOTE: the versions below should match those in your botconfig
- '1' - '1.4.2'
- '1.3' - '1.3.1'
- 'nightly' - 'nightly'
os: # NOTE: should match the os setting of your botconfig os: # NOTE: should match the os setting of your botconfig
- ubuntu-latest - ubuntu-latest

View File

@ -1,11 +1,6 @@
using SnoopCompile using SnoopCompile
snoop_bench( snoop_bench(
BotConfig( BotConfig("Plots", version = ["1.3.1", "1.4.2", "nightly"]),
"Plots",
else_os = "linux",
version = ["1.3", "1", "nightly"],
else_version = v"1",
),
joinpath(@__DIR__, "precompile_script.jl"), joinpath(@__DIR__, "precompile_script.jl"),
) )

View File

@ -1,11 +1,6 @@
using SnoopCompile using SnoopCompile
snoop_bot( snoop_bot(
BotConfig( BotConfig("Plots", version = ["1.3.1", "1.4.2", "nightly"]),
"Plots",
else_os = "linux",
version = ["1.3", "1", "nightly"],
else_version = v"1",
),
joinpath(@__DIR__, "precompile_script.jl"), joinpath(@__DIR__, "precompile_script.jl"),
) )