multios and run on 1.5

This commit is contained in:
Daniel Schwabeneder 2020-06-30 21:18:04 +02:00
parent 16618430ed
commit 3f521b3322
3 changed files with 17 additions and 4 deletions

View File

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

View File

@ -1,6 +1,12 @@
using SnoopCompile
snoop_bench(
BotConfig("Plots", version = ["1.3.1", "1.4.2", "nightly"]),
BotConfig(
"Plots",
os = ["linux", "windows", "macos"],
else_os = "linux",
version = ["1.3", "1.4", "1.5", "nightly"],
else_version = "1.4",
),
joinpath(@__DIR__, "precompile_script.jl"),
)

View File

@ -1,6 +1,12 @@
using SnoopCompile
snoop_bot(
BotConfig("Plots", version = ["1.3.1", "1.4.2", "nightly"]),
BotConfig(
"Plots",
os = ["linux", "windows", "macos"],
else_os = "linux",
version = ["1.3", "1.4", "1.5", "nightly"],
else_version = "1.4",
),
joinpath(@__DIR__, "precompile_script.jl"),
)