diff options
author | Darren Tucker <dtucker@dtucker.net> | 2021-07-25 14:37:55 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-07-25 14:37:55 +0200 |
commit | 460ae5d93051bab70239ad823dd784822d58baad (patch) | |
tree | b7ac28698bd00f5086327253f65ce6d0222c8603 /.github | |
parent | upstream: Skip unit and makefile-based key conversion tests when (diff) | |
download | openssh-460ae5d93051bab70239ad823dd784822d58baad.tar.xz openssh-460ae5d93051bab70239ad823dd784822d58baad.zip |
Pass OPENSSL=no to make tests too.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/upstream.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml index 3d0bdd32e..fec110cdc 100644 --- a/.github/workflows/upstream.yml +++ b/.github/workflows/upstream.yml @@ -30,7 +30,7 @@ jobs: - name: make install run: vmrun "cd /usr/src/usr.bin/ssh && sudo make install" - name: make tests - run: vmrun "cd /usr/src/regress/usr.bin/ssh && make obj && make clean && SUDO=sudo make" + run: vmrun "cd /usr/src/regress/usr.bin/ssh && make obj && make clean && if test '${{ matrix.configs }}' = 'without-openssl'; then make OPENSSL=no; else make; fi" - name: save logs if: failure() uses: actions/upload-artifact@v2 |