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 2f375cb4 Cannot install ruby-ldap without it
2f375cb4 is described below
commit 2f375cb473e130ed6a96dc5573a5d3046c6e54a3
Author: Sebb <[email protected]>
AuthorDate: Sat May 21 15:15:05 2022 +0100
Cannot install ruby-ldap without it
---
.github/workflows/unittestlib.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/unittestlib.yml
b/.github/workflows/unittestlib.yml
index e9dc1df4..b2a78d7c 100644
--- a/.github/workflows/unittestlib.yml
+++ b/.github/workflows/unittestlib.yml
@@ -12,13 +12,13 @@ jobs:
strategy:
fail-fast: true
matrix:
- os: [ubuntu-20.04, macos-latest]
+ os: [macos-latest, ubuntu-20.04]
ruby: [2.7, 3.1]
runs-on: ${{ matrix.os }}
steps:
- - name: setup
+ - name: setup # needed for installing ruby-ldap
run: |
- # sudo apt-get install libldap2-dev
+ sudo apt-get install libldap2-dev
sudo apt-get install libsasl2-dev
if: matrix.os != 'macos-latest'
- uses: actions/checkout@v2