From dbfeda5edf9e76d163024527c191a28d2d9a2457 Mon Sep 17 00:00:00 2001 From: Dale Henrichs Date: Sat, 11 May 2024 11:56:28 -0700 Subject: [PATCH] Issue #613: 3.5.8 and 3.6.8 are not expected to run on macos-latest (14.x). 3.7.1 is the latest and is expected to run on macos-latest (14.x). --- .github/workflows/main.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 972a2e42..adcbf4aa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,10 +46,9 @@ jobs: - Moose64-10 - Moose64-9.0 - Moose64-8.0 - - GemStone64-3.5.3 - GemStone64-3.5.8 - - GemStone64-3.6.0 - - GemStone64-3.6.5 + - GemStone64-3.6.8 + - GemStone64-3.7.1 - GToolkit64-release exclude: # exclude 32bit builds on macOS and GemStone builds on windows - os: macos-latest @@ -64,18 +63,20 @@ jobs: smalltalk: Pharo32-alpha - os: macos-latest smalltalk: Pharo32-3.0 + - os: macos-latest + smalltalk: GemStone64-3.5.8 + - os: macos-latest + smalltalk: GemStone64-3.6.8 - os: windows-2019 smalltalk: Pharo64-10 - os: windows-2019 smalltalk: Pharo64-6.0 - - os: windows-2019 - smalltalk: GemStone64-3.5.3 - os: windows-2019 smalltalk: GemStone64-3.5.8 - os: windows-2019 - smalltalk: GemStone64-3.6.0 + smalltalk: GemStone64-3.6.8 - os: windows-2019 - smalltalk: GemStone64-3.6.5 + smalltalk: GemStone64-3.7.1 continue-on-error: ${{ matrix.os == 'macos-latest' && startsWith(matrix.smalltalk, 'GemStone64') }} runs-on: ${{ matrix.os }} name: ${{ matrix.smalltalk }} on ${{ matrix.os }}