[openssh-commits] [openssh] 01/04: Test OpenBSD upstream with and without OpenSSL.

git+noreply at mindrot.org git+noreply at mindrot.org
Sat Jul 24 14:23:09 AEST 2021


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit b6673b1d2ee90b4690ee84f634efe40225423c38
Author: Darren Tucker <dtucker at dtucker.net>
Date:   Sat Jul 24 13:02:51 2021 +1000

    Test OpenBSD upstream with and without OpenSSL.
---
 .github/workflows/upstream.yml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml
index 71b11463..3d0bdd32 100644
--- a/.github/workflows/upstream.yml
+++ b/.github/workflows/upstream.yml
@@ -14,7 +14,7 @@ jobs:
       fail-fast: false
       matrix:
         os: [ obsdsnap, obsdsnap-i386 ]
-        configs: [ default ]
+        configs: [ default, without-openssl ]
     steps:
     - uses: actions/checkout at v2
     - name: shutdown VM if running
@@ -23,8 +23,10 @@ jobs:
       run: vmstartup
     - name: update source
       run: vmrun "cd /usr/src && cvs up -dPA usr.bin/ssh regress/usr.bin/ssh"
+    - name: make clean
+      run: vmrun "cd /usr/src/usr.bin/ssh && make obj && make clean"
     - name: make
-      run: vmrun "cd /usr/src/usr.bin/ssh && make obj && make clean && make"
+      run: vmrun "cd /usr/src/usr.bin/ssh && if test '${{ matrix.configs }}' = 'without-openssl'; then make OPENSSL=no; else make; fi"
     - name: make install
       run: vmrun "cd /usr/src/usr.bin/ssh && sudo make install"
     - name: make tests
@@ -33,7 +35,7 @@ jobs:
       if: failure()
       uses: actions/upload-artifact at v2
       with:
-        name: ${{ matrix.os }}-logs
+        name: ${{ matrix.os }}-${{ matrix.configs }}-logs
         path: |
           /usr/obj/regress/usr.bin/ssh/*.log
     - name: shutdown VM

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list