From 3f521b3322843681ab12d0970ac1f839228b5f7d Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Tue, 30 Jun 2020 21:18:04 +0200 Subject: [PATCH] multios and run on 1.5 --- .github/workflows/SnoopCompile.yml | 5 +++-- deps/SnoopCompile/snoop_bench.jl | 8 +++++++- deps/SnoopCompile/snoop_bot.jl | 8 +++++++- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/workflows/SnoopCompile.yml b/.github/workflows/SnoopCompile.yml index 00d8a08d..9575c330 100644 --- a/.github/workflows/SnoopCompile.yml +++ b/.github/workflows/SnoopCompile.yml @@ -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 diff --git a/deps/SnoopCompile/snoop_bench.jl b/deps/SnoopCompile/snoop_bench.jl index ecb1317c..646ad888 100644 --- a/deps/SnoopCompile/snoop_bench.jl +++ b/deps/SnoopCompile/snoop_bench.jl @@ -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"), ) diff --git a/deps/SnoopCompile/snoop_bot.jl b/deps/SnoopCompile/snoop_bot.jl index 7ea101fc..1bf76253 100644 --- a/deps/SnoopCompile/snoop_bot.jl +++ b/deps/SnoopCompile/snoop_bot.jl @@ -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"), )