From d9d70be346bf249f2e1b4b17f4e3cedc1b1f61c2 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Thu, 14 Apr 2022 08:23:16 +0200 Subject: [PATCH] try 1.8 --- .github/workflows/SnoopCompile.yml | 6 +++--- deps/SnoopCompile/snoop_bot_config.jl | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/SnoopCompile.yml b/.github/workflows/SnoopCompile.yml index 31d80524..73d9a821 100644 --- a/.github/workflows/SnoopCompile.yml +++ b/.github/workflows/SnoopCompile.yml @@ -18,13 +18,14 @@ jobs: GKS_ENCODING: "utf8" GKSwstype: "100" PLOTS_TEST: "true" - runs-on: ${{ matrix.os }} + runs-on: ${{matrix.os}} strategy: fail-fast: false matrix: version: # NOTE: the versions below should match those in your botconfig - '1.6' # ⎤ - '1.7' # | + - '~1.8.0-0' # | # - 'nightly' # ⎦ <<< keep these versions in sync with deps/SnoopCompile/snoop_bot_config.jl # ^^^^^^^^^ for 'nightly', see github.com/JuliaPlots/Plots.jl/issues/4079 os: # NOTE: should match the os setting of your botconfig @@ -36,7 +37,7 @@ jobs: - uses: actions/checkout@v2 - uses: julia-actions/setup-julia@latest with: - version: ${{ matrix.version }} + version: ${{matrix.version}} - name: Install dependencies run: | @@ -88,7 +89,6 @@ jobs: no changelog branch: "Test_SnoopCompile_AutoPR_${{ github.ref }}" - Skip: if: "contains(github.event.head_commit.message, '[skip ci]')" runs-on: ubuntu-latest diff --git a/deps/SnoopCompile/snoop_bot_config.jl b/deps/SnoopCompile/snoop_bot_config.jl index 58063e56..7d5b7b4a 100644 --- a/deps/SnoopCompile/snoop_bot_config.jl +++ b/deps/SnoopCompile/snoop_bot_config.jl @@ -2,6 +2,6 @@ using CompileBot botconfig = BotConfig( "Plots", - version = ["1.6", "1.7", "nightly"], # <<< keep these versions in sync with .github/workflows/SnoopCompile.yml + version = ["1.6", "1.7", "1.8", "nightly"], # <<< keep these versions in sync with .github/workflows/SnoopCompile.yml # else_version = "nightly", )