mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Release notes are available at https://www.openssh.com/txt/release-8.9 Some highlights: * ssh(1), sshd(8), ssh-add(1), ssh-agent(1): add a system for restricting forwarding and use of keys added to ssh-agent(1) * ssh(1), sshd(8): add the sntrup761x25519-sha512@openssh.com hybrid ECDH/x25519 + Streamlined NTRU Prime post-quantum KEX to the default KEXAlgorithms list (after the ECDH methods but before the prime-group DH ones). The next release of OpenSSH is likely to make this key exchange the default method. * sshd(8), portable OpenSSH only: this release removes in-built support for MD5-hashed passwords. If you require these on your system then we recommend linking against libxcrypt or similar. Future deprecation notice ========================= A near-future release of OpenSSH will switch scp(1) from using the legacy scp/rcp protocol to using SFTP by default. Legacy scp/rcp performs wildcard expansion of remote filenames (e.g. "scp host:* .") through the remote shell. This has the side effect of requiring double quoting of shell meta-characters in file names included on scp(1) command-lines, otherwise they could be interpreted as shell commands on the remote side. MFC after: 1 month Relnotes: Yes Sponsored by: The FreeBSD Foundation
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
name: Upstream self-hosted
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, ci ]
|
|
|
|
jobs:
|
|
selfhosted:
|
|
if: github.repository == 'openssh/openssh-portable-selfhosted'
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
TARGET_HOST: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ obsdsnap, obsdsnap-i386 ]
|
|
configs: [ default, without-openssl ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: shutdown VM if running
|
|
run: vmshutdown
|
|
- name: startup VM
|
|
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 && 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
|
|
run: vmrun "cd /usr/src/regress/usr.bin/ssh && make obj && make clean && if test '${{ matrix.configs }}' = 'without-openssl'; then make SUDO=sudo OPENSSL=no; else make SUDO=sudo; fi"
|
|
timeout-minutes: 300
|
|
- name: save logs
|
|
if: failure()
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.os }}-${{ matrix.configs }}-logs
|
|
path: |
|
|
/usr/obj/regress/usr.bin/ssh/*.log
|
|
- name: shutdown VM
|
|
if: always()
|
|
run: vmshutdown
|