Skip to content

Update OpenSSL to the latest stable version (3.2.1) #86

Update OpenSSL to the latest stable version (3.2.1)

Update OpenSSL to the latest stable version (3.2.1) #86

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: macos-latest
arch: arm64
- os: macos-latest
arch: x86_64
- os: ubuntu-latest
arch: aarch64
- os: ubuntu-latest
arch: i686
- os: ubuntu-latest
arch: x86_64
- os: windows-latest
arch: AMD64
- os: windows-latest
arch: x86
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install qemu
if: matrix.os == 'ubuntu-latest'
uses: docker/setup-qemu-action@v3
- name: Install nasm
if: matrix.os == 'windows-latest'
run: choco install -y nasm
- name: Build OpenSSL
env:
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BEFORE_BUILD: python scripts/build-openssl.py /tmp/vendor
CIBW_BEFORE_BUILD_WINDOWS: scripts\build-openssl.bat C:\cibw\vendor
CIBW_BUILD: cp38-*
CIBW_SKIP: '*-musllinux*'
CIBW_TEST_COMMAND: python -c "import dummy"
run: |
pip install cibuildwheel
cibuildwheel --output-dir output
rm output/*.whl
- name: Upload OpenSSL
uses: actions/upload-artifact@v4
with:
name: output-${{ matrix.os }}-${{ matrix.arch }}
path: output/