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 db02e39  Where does chromedriver get loaded?
db02e39 is described below

commit db02e3987ad34ce3edddb70ab5f4e6a4f6747e33
Author: Sebb <[email protected]>
AuthorDate: Fri Mar 25 12:36:15 2022 +0000

    Where does chromedriver get loaded?
    
    [skip ci]
---
 .github/workflows/unittestagenda.yml | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/unittestagenda.yml 
b/.github/workflows/unittestagenda.yml
index c463a1b..de24c9e 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -14,17 +14,20 @@ jobs:
       fail-fast: false
       matrix:
         os: [ubuntu-20.04, 'macos-latest']
-        ruby: [2.7.1]
+        ruby: [2.7]
     runs-on: ${{ matrix.os }}
     steps:
-    - name: setup
+    - name: Check chromedriver version
+      run: |
+        chromedriver -v || true
+    - name: setup Ubuntu missing header files
       run: |
         sudo apt-get install libldap2-dev
         sudo apt-get install libsasl2-dev
-      if:  matrix.os != 'macos-latest'  
+      if:  matrix.os == 'ubuntu-20.04'  
     - uses: actions/setup-node@v2
       with:
-        node-version: '14.19.1' # try to match Travis
+        node-version: '14'
     - uses: actions/checkout@v2
       with:
         persist-credentials: false
@@ -35,12 +38,16 @@ jobs:
     - name: setup agenda 1
       run: |
         cd www/board/agenda
+        chromedriver -v || true
         bundle install
+        chromedriver -v || true
     - name: setup agenda 2
       # need to run the ruby that has all the gems installed
       run: |
-        sudo $(dirname $(which ruby))/ruby -I $PWD/lib -r whimsy/asf -e 
"ASF::LDAP.configure"
+        sudo $(which ruby) -I $PWD/lib -r whimsy/asf -e "ASF::LDAP.configure"
     - name: test agenda code
       run: |
         cd www/board/agenda
+        chromedriver -v || true
         bundle exec rake
+        chromedriver -v || true

Reply via email to