Skip to content

Commit

Permalink
[github-ci][ci.yml] Disable pyca external tests
Browse files Browse the repository at this point in the history
This commit temporarily disables pyca external tests,
due to failures to be investigated in a dedicated PR.
  • Loading branch information
romen committed Aug 14, 2021
1 parent f73c372 commit 850ed18
Showing 1 changed file with 33 additions and 32 deletions.
65 changes: 33 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,35 +246,36 @@ jobs:
# - name: test external krb5
# run: make test TESTS="test_external_krb5" 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
# 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

0 comments on commit 850ed18

Please sign in to comment.