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 b0118b1b if should be at the start of a step
b0118b1b is described below

commit b0118b1b44e87494306e47763a15715a8cc62532
Author: Sebb <[email protected]>
AuthorDate: Thu Jun 13 09:53:04 2024 +0100

    if should be at the start of a step
---
 .github/workflows/unittestagenda.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/unittestagenda.yml 
b/.github/workflows/unittestagenda.yml
index fd336fd8..d27182c0 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -28,17 +28,17 @@ jobs:
     runs-on: ${{ matrix.os }}
     steps:
     - name: setup Ubuntu missing header files
+      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'
     # Default host no longer includes subversion
     - name: setup macos
+      if: runner.os == 'macOS'
       run: |
         brew install subversion
-      if: runner.os == 'macOS'
     - uses: actions/setup-node@v4
       with:
         node-version: 'v21.4.0' # works on macOS

Reply via email to