forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from open-quantum-safe/v_8_9_upgrade
V_8_9_P1 upgrade
- Loading branch information
Showing
246 changed files
with
10,840 additions
and
4,834 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[![C/C++ CI](https://github.com/openssh/openssh-portable/actions/workflows/c-cpp.yml/badge.svg)](https://github.com/openssh/openssh-portable/actions/workflows/c-cpp.yml) | ||
[![C/C++ CI self-hosted](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/selfhosted.yml/badge.svg)](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/selfhosted.yml) | ||
[![Upstream self-hosted](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/upstream.yml/badge.svg)](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/upstream.yml) | ||
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/openssh.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:openssh) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
#!/usr/bin/env bash | ||
#!/bin/sh | ||
|
||
. .github/configs $1 $2 | ||
. .github/configs $1 | ||
|
||
[ -z "${SUDO}" ] || ${SUDO} mkdir -p /var/empty | ||
|
||
set -ex | ||
|
||
output_failed_logs() { | ||
for i in regress/failed*; do | ||
if [ -f "$i" ]; then | ||
echo ------------------------------------------------------------------------- | ||
echo LOGFILE $i | ||
cat $i | ||
echo ------------------------------------------------------------------------- | ||
fi | ||
done | ||
} | ||
trap output_failed_logs 0 | ||
|
||
if [ -z "${LTESTS}" ]; then | ||
make ${TEST_TARGET} SKIP_LTESTS="${SKIP_LTESTS}" | ||
result=$? | ||
else | ||
make ${TEST_TARGET} SKIP_LTESTS="${SKIP_LTESTS}" LTESTS="${LTESTS}" | ||
result=$? | ||
fi | ||
|
||
if [ ! -z "${SSHD_CONFOPTS}" ]; then | ||
echo "rerunning tests with TEST_SSH_SSHD_CONFOPTS='${SSHD_CONFOPTS}'" | ||
make t-exec TEST_SSH_SSHD_CONFOPTS="${SSHD_CONFOPTS}" | ||
result2=$? | ||
if [ "${result2}" -ne 0 ]; then | ||
result="${result2}" | ||
echo "rerunning t-exec with TEST_SSH_SSHD_CONFOPTS='${SSHD_CONFOPTS}'" | ||
if [ -z "${LTESTS}" ]; then | ||
make t-exec SKIP_LTESTS="${SKIP_LTESTS}" TEST_SSH_SSHD_CONFOPTS="${SSHD_CONFOPTS}" | ||
else | ||
make t-exec SKIP_LTESTS="${SKIP_LTESTS}" LTESTS="${LTESTS}" TEST_SSH_SSHD_CONFOPTS="${SSHD_CONFOPTS}" | ||
fi | ||
fi | ||
|
||
if [ "$result" -ne "0" ]; then | ||
for i in regress/failed*; do | ||
echo ------------------------------------------------------------------------- | ||
echo LOGFILE $i | ||
cat $i | ||
echo ------------------------------------------------------------------------- | ||
done | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.