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 df051701 Have to do it ourselves now
df051701 is described below
commit df05170108f8776f9bcb6fe64b4bb48b6e48f9c3
Author: Sebb <[email protected]>
AuthorDate: Thu Apr 25 13:11:03 2024 +0100
Have to do it ourselves now
---
.github/workflows/unittestlib.yml | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/unittestlib.yml
b/.github/workflows/unittestlib.yml
index eb1ed68a..5653624a 100644
--- a/.github/workflows/unittestlib.yml
+++ b/.github/workflows/unittestlib.yml
@@ -15,8 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- # Subversion not currently present on macos-13+
- os: [macos-12, ubuntu-20.04, ubuntu-22.04]
+ os: [macos-latest, ubuntu-20.04, ubuntu-22.04]
ruby: [2.7, 3.1]
# 2.7 not supported on 22.04
exclude:
@@ -24,13 +23,17 @@ jobs:
ruby: 2.7
runs-on: ${{ matrix.os }}
steps:
- - name: setup # needed for installing ruby-ldap
+ - name: setup non-macOS # needed for installing ruby-ldap
run: |
sudo apt-get update
sudo apt-get install libldap2-dev
sudo apt-get install libsasl2-dev
sudo apt-get install libyaml-dev # seems to be needed for installing
ruby since psych 5.0.0 release
- if: matrix.os != 'macos-latest'
+ if: ${{ runner.os != 'macOS' }}
+ - name: setup macos
+ run: |
+ brew install subversion
+ if: ${{ runner.os == 'macOS' }}
- uses: actions/checkout@v3
with:
persist-credentials: false