You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2022/05/21 14:31:21 UTC

[whimsy] branch master updated: I wonder why it ever worked?

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 798561e0 I wonder why it ever worked?
798561e0 is described below

commit 798561e03bf6579a6e19590e82e10d3dac282805
Author: Sebb <se...@apache.org>
AuthorDate: Sat May 21 15:31:15 2022 +0100

    I wonder why it ever worked?
---
 .github/workflows/unittestagenda.yml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/unittestagenda.yml b/.github/workflows/unittestagenda.yml
index a1f928ed..2121bca5 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -13,12 +13,17 @@ jobs:
     strategy:
       fail-fast: true
       matrix:
-        os: [ubuntu-20.04, 'macos-latest']
-        ruby: [2.7]
+        os: [macos-latest, ubuntu-20.04, ubuntu-22.04]
+        ruby: [2.7, 3.1]
+        # 2.7 not supported on 22.04
+        exclude:
+          - os: ubuntu-22.04
+            ruby: 2.7
     runs-on: ${{ matrix.os }}
     steps:
     - name: setup Ubuntu missing header files
       run: |
+        sudo apt-get update
         sudo apt-get install libldap2-dev
         sudo apt-get install libsasl2-dev
       if:  matrix.os == 'ubuntu-20.04'