summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2021-04-24 15:55:25 -0500
committerPauli <pauli@openssl.org>2021-04-27 19:09:03 +1000
commita938f0045edd74aa4ba1188d6673c075fbd326c3 (patch)
treeb16f4b42e8089b9721a0fb605a690021498f601b /.github/workflows
parenta09fb26ba90e46c4f731b5a597051b4d4b9aea3e (diff)
re-add pyca/cryptography testing
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15018)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml31
1 files changed, 29 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ec35e84ff3..4bdf669240 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -231,5 +231,32 @@ jobs:
run: make test TESTS="test_external_gost_engine"
- name: test external krb5
run: make test TESTS="test_external_krb5"
-# - name: test external pyca
-# run: make test TESTS="test_external_pyca"
+
+ external-test-pyca:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ RUST:
+ - 1.51.0
+ PYTHON:
+ - 3.9
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ submodules: recursive
+ - name: Configure OpenSSL
+ run: ./config --strict-warnings --debug enable-external-tests && perl configdata.pm --dump
+ - name: make
+ run: make -s -j4
+ - name: Setup Python
+ uses: actions/setup-python@v2.2.2
+ with:
+ python-version: ${{ matrix.PYTHON }}
+ - uses: actions-rs/toolchain@v1
+ with:
+ profile: minimal
+ toolchain: ${{ matrix.RUST }}
+ override: true
+ default: true
+ - name: test external pyca
+ run: make test TESTS="test_external_pyca"