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 dbbc99c0 Put if at start of steps
dbbc99c0 is described below
commit dbbc99c0d60dd607efc507177d8dccf885dc4ccf
Author: Sebb <[email protected]>
AuthorDate: Thu Jun 13 09:54:09 2024 +0100
Put if at start of steps
---
.github/workflows/unittestlib.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/unittestlib.yml
b/.github/workflows/unittestlib.yml
index ca0108ca..67f15071 100644
--- a/.github/workflows/unittestlib.yml
+++ b/.github/workflows/unittestlib.yml
@@ -24,16 +24,16 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: setup non-macOS # needed for installing ruby-ldap
+ if: ${{ runner.os != 'macOS' }}
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: ${{ runner.os != 'macOS' }}
- name: setup macos
+ if: ${{ runner.os == 'macOS' }}
run: |
brew install subversion
- if: ${{ runner.os == 'macOS' }}
- uses: actions/checkout@v4
with:
persist-credentials: false