aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicola Tuveri <nic.tuv@gmail.com>2021-08-17 13:03:56 +0300
committerNicola Tuveri <nic.tuv@gmail.com>2022-04-26 12:42:41 +0300
commit25f4bf08c71a81d0a8a50f89a344d8013b55716c (patch)
tree4faa8c9ba67ff35151d44d6c50e1d0b1fc3b4e4d
parent91db522f31981b3fafdec4120de1027e8bc4d792 (diff)
downloadopenssl-25f4bf08c71a81d0a8a50f89a344d8013b55716c.tar.gz
Revert "[github-ci][ci.yml] Disable pyca external tests"
This reverts commit 850ed18505631286abbd23d355d4b48f28ad89a9. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16340)
-rw-r--r--.github/workflows/ci.yml65
1 files changed, 32 insertions, 33 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 367b8cf41f..f4d0a00587 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -249,36 +249,35 @@ jobs:
# - name: test external krb5
# run: make test TESTS="test_external_krb5" VERBOSE=1
-# pyca testing temporarily disabled due to failures to be investigated separately
-# 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: package installs
-# run: |
-# sudo apt-get update
-# sudo apt-get -yq install python3-virtualenv virtualenv
-# - 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" VERBOSE=1
+ 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: package installs
+ run: |
+ sudo apt-get update
+ sudo apt-get -yq install python3-virtualenv virtualenv
+ - 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" VERBOSE=1