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
matrix:
version: # NOTE: the versions below should match those in your botconfig
- '1'
- '1.3'
- '1.4.2'
- '1.3.1'
- 'nightly'
os: # NOTE: should match the os setting of your botconfig
- ubuntu-latest

View File

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

View File

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