Skip to content

REMOVE_ME: test

REMOVE_ME: test #12

Workflow file for this run

# This file was generated using Kotlin DSL (.github/workflows/build.main.kts).
# If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file.
# Generated with https://github.com/typesafegithub/github-workflows-kt
name: 'Build'
on: push
jobs:
macos:
runs-on: 'macos-latest'
steps:
- id: 'step-0'
uses: 'actions/checkout@v4'
with:
submodules: 'true'
- id: 'step-1'
uses: 'actions/setup-python@v5'
with:
python-version: '3.x'
- id: 'step-2'
run: 'pip install conan'
- id: 'step-3'
run: 'conan profile detect'
- id: 'step-4'
run: 'conan create conan-center-index/recipes/openssl/3.x.x --build=missing --version=3.2.0 -pr:b default -pr:h profiles/tvos-simulator-arm64 -o "*:shared=False"'
- id: 'step-5'
run: 'conan install packages/openssl3 --output-folder build/openssl3/tvos-simulator-arm64 --version=3.2.0 -pr:b default -pr:h profiles/tvos-simulator-arm64 -o "*:shared=False"'
- id: 'step-26'
run: 'conan create conan-center-index/recipes/openssl/3.x.x --build=missing --version=3.2.0 -pr:b default -pr:h profiles/macos-x64 -o "*:shared=True"'
- id: 'step-27'
run: 'conan install packages/openssl3 --output-folder build/openssl3/macos-x64 --version=3.2.0 -pr:b default -pr:h profiles/macos-x64 -o "*:shared=True"'
- id: 'step-28'
run: 'conan create conan-center-index/recipes/openssl/3.x.x --build=missing --version=3.2.0 -pr:b default -pr:h profiles/macos-x64 -o "*:shared=False"'
- id: 'step-29'
run: 'conan install packages/openssl3 --output-folder build/openssl3/macos-x64 --version=3.2.0 -pr:b default -pr:h profiles/macos-x64 -o "*:shared=False"'
- id: 'step-6'
uses: 'actions/upload-artifact@v4'
with:
name: 'openssl-macos'
path: |-
build/openssl3/*/dynamicLib/*
build/openssl3/*/staticLib/*
build/openssl3/*/include/*
if-no-files-found: 'error'
linux:
runs-on: 'ubuntu-20.04'
steps:
- id: 'step-0'
uses: 'actions/checkout@v4'
with:
submodules: 'true'
- id: 'step-1'
uses: 'actions/setup-python@v5'
with:
python-version: '3.x'
- id: 'step-2'
run: 'pip install conan'
- id: 'step-3'
run: 'conan profile detect'
- id: 'step-4'
run: 'sudo apt update'
- id: 'step-5'
run: 'sudo apt install g++-8-aarch64-linux-gnu g++-8'
- id: 'step-6'
run: 'conan create conan-center-index/recipes/openssl/3.x.x --build=missing --version=3.2.0 -pr:b default -pr:h profiles/android-arm64 -o "*:shared=True"'
- id: 'step-7'
run: 'conan install packages/openssl3 --output-folder build/openssl3/android-arm64 --version=3.2.0 -pr:b default -pr:h profiles/android-arm64 -o "*:shared=True"'
- id: 'step-8'
run: 'conan create conan-center-index/recipes/openssl/3.x.x --build=missing --version=3.2.0 -pr:b default -pr:h profiles/android-arm64 -o "*:shared=False"'
- id: 'step-9'
run: 'conan install packages/openssl3 --output-folder build/openssl3/android-arm64 --version=3.2.0 -pr:b default -pr:h profiles/android-arm64 -o "*:shared=False"'
- id: 'step-10'
uses: 'actions/upload-artifact@v4'
with:
name: 'openssl-linux'
path: |-
build/openssl3/*/dynamicLib/*
build/openssl3/*/staticLib/*
build/openssl3/*/include/*
if-no-files-found: 'error'
windows:
runs-on: 'windows-latest'
steps:
- id: 'step-0'
uses: 'actions/checkout@v4'
with:
submodules: 'true'
- id: 'step-1'
uses: 'actions/setup-python@v5'
with:
python-version: '3.x'
- id: 'step-2'
run: 'pip install conan'
- id: 'step-3'
run: 'conan profile detect'
- id: 'step-4'
run: 'conan create conan-center-index/recipes/openssl/3.x.x --build=missing --version=3.2.0 -pr:b default -pr:h profiles/mingw-x64 -o "*:shared=True"'
- id: 'step-5'
run: 'conan install packages/openssl3 --output-folder build/openssl3/mingw-x64 --version=3.2.0 -pr:b default -pr:h profiles/mingw-x64 -o "*:shared=True"'
- id: 'step-6'
run: 'conan create conan-center-index/recipes/openssl/3.x.x --build=missing --version=3.2.0 -pr:b default -pr:h profiles/mingw-x64 -o "*:shared=False"'
- id: 'step-7'
run: 'conan install packages/openssl3 --output-folder build/openssl3/mingw-x64 --version=3.2.0 -pr:b default -pr:h profiles/mingw-x64 -o "*:shared=False"'
- id: 'step-8'
uses: 'actions/upload-artifact@v4'
with:
name: 'openssl-windows'
path: |-
build/openssl3/*/dynamicLib/*
build/openssl3/*/staticLib/*
build/openssl3/*/include/*
if-no-files-found: 'error'
aggregate:
runs-on: 'ubuntu-latest'
needs:
- 'macos'
- 'linux'
- 'windows'
steps:
- id: 'step-0'
uses: 'actions/download-artifact@v4'
with:
path: 'openssl'
pattern: 'openssl-*'
merge-multiple: 'true'
- id: 'step-1'
uses: 'actions/upload-artifact@v4'
with:
name: 'openssl-3.2.0'
path: 'openssl'
if-no-files-found: 'error'