summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml16
m---------gost-engine0
m---------pyca-cryptography0
-rw-r--r--test/ossl_shim/include/openssl/base.h3
-rw-r--r--test/recipes/95-test_external_krb5.t2
5 files changed, 20 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 67ec2541b3..f2fdacce26 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -166,3 +166,19 @@ jobs:
- name: make install
run: make install
working-directory: ./build
+ external-tests:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ submodules: recursive
+ - name: package installs
+ run: |
+ sudo apt-get update
+ sudo apt-get -yq install bison dejagnu gettext keyutils ldap-utils libldap2-dev libkeyutils-dev python3 python3-paste python3-pyrad slapd tcl-dev tcsh python3-virtualenv virtualenv
+ - name: config
+ run: ./config --strict-warnings --debug no-afalgeng enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method enable-weak-ssl-ciphers enable-zlib enable-ec_nistp_64_gcc_128 enable-external-tests && perl configdata.pm --dump
+ - name: make
+ run: make -s -j4
+ - name: make test
+ run: BORING_RUNNER_DIR=$(pwd)/boringssl/ssl/test/runner make test TESTS="test_external*"
diff --git a/gost-engine b/gost-engine
-Subproject b008f2a0ffa1797943c3d08c3b3eee31229a56d
+Subproject 28a0a193549a9b778a14fade0219b9daa0e7c5d
diff --git a/pyca-cryptography b/pyca-cryptography
-Subproject 09403100de2f6f1cdd0d484dcb8e620f1c335c8
+Subproject e09cd90f77a31832bdde1d3652c115be282cced
diff --git a/test/ossl_shim/include/openssl/base.h b/test/ossl_shim/include/openssl/base.h
index 92e3648e1c..84918289c0 100644
--- a/test/ossl_shim/include/openssl/base.h
+++ b/test/ossl_shim/include/openssl/base.h
@@ -10,6 +10,9 @@
#ifndef OSSL_TEST_SHIM_INCLUDE_OPENSSL_BASE_H
#define OSSL_TEST_SHIM_INCLUDE_OPENSSL_BASE_H
+/* Needed for DH functions */
+#include "internal/deprecated.h"
+
/* Needed for BORINGSSL_MAKE_DELETER */
# include <openssl/bio.h>
# include <openssl/evp.h>
diff --git a/test/recipes/95-test_external_krb5.t b/test/recipes/95-test_external_krb5.t
index ad262da2d9..9d6824cb6f 100644
--- a/test/recipes/95-test_external_krb5.t
+++ b/test/recipes/95-test_external_krb5.t
@@ -17,7 +17,7 @@ setup("test_external_krb5");
plan skip_all => "No external tests in this configuration"
if disabled("external-tests");
plan skip_all => "krb5 not available"
- if ! -f srctop_file("krb5", "data.txt");
+ if ! -f srctop_file("krb5", "src", "configure.in");
plan tests => 1;