mirror of https://github.com/openssl/openssl.git
update rust toolchain
Needs update to build new rust crate for pyca-cryptography Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/27192)
This commit is contained in:
parent
a5f377f280
commit
94b34ee67a
|
@ -686,14 +686,16 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
RUST:
|
|
||||||
- 1.51.0
|
|
||||||
PYTHON:
|
PYTHON:
|
||||||
- 3.9
|
- 3.9
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
- name: package installs
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -yq install pkgconf libssl-dev
|
||||||
- name: Configure OpenSSL
|
- name: Configure OpenSSL
|
||||||
run: ./config --strict-warnings --banner=Configured --debug enable-external-tests && perl configdata.pm --dump
|
run: ./config --strict-warnings --banner=Configured --debug enable-external-tests && perl configdata.pm --dump
|
||||||
- name: make
|
- name: make
|
||||||
|
@ -702,9 +704,9 @@ jobs:
|
||||||
uses: actions/setup-python@v5.3.0
|
uses: actions/setup-python@v5.3.0
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.PYTHON }}
|
python-version: ${{ matrix.PYTHON }}
|
||||||
- uses: dtolnay/rust-toolchain@master
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
with:
|
with:
|
||||||
toolchain: ${{ matrix.RUST }}
|
toolchain: stable
|
||||||
- name: get cpu info
|
- name: get cpu info
|
||||||
run: |
|
run: |
|
||||||
cat /proc/cpuinfo
|
cat /proc/cpuinfo
|
||||||
|
|
Loading…
Reference in New Issue