From 047dd4c5df0b2dc7f09a0bd5de00c3320520e7a4 Mon Sep 17 00:00:00 2001 From: Dale Henrichs Date: Tue, 3 Oct 2023 18:18:18 -0700 Subject: [PATCH] add additional supported mac and ubuntu-22.04 os versions --- .github/workflows/ci.yml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 400b69fa..0314ee9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,31 @@ jobs: strategy: fail-fast: false matrix: - # os: [ ubuntu-20.04, macos-latest ] os: [ ubuntu-20.04 ] smalltalk: [ 3.5.3, 3.5.8, 3.6.0, 3.6.4, 3.6.5, 3.6.6, 3.7.0 ] + include: + - smalltalk: 3.7.0 + os: ubuntu-22.04 + - smalltalk: 3.7.0 + os: macos-13 + - smalltalk: 3.7.0 + os: macos-12 + - smalltalk: 3.7.0 + os: macos-11 + - smalltalk: 3.6.6 + os: ubuntu-22.04 + - smalltalk: 3.6.6 + os: macos-13 + - smalltalk: 3.6.6 + os: macos-12 + - smalltalk: 3.6.6 + os: macos-11 + - smalltalk: 3.6.5 + os: macos-11 + - smalltalk: 3.6.4 + os: macos-11 + - smalltalk: 3.5.8 + os: macos-11 runs-on: ${{ matrix.os }} env: GS_VERS: ${{ matrix.smalltalk }}