Some BP5 Serialization documentation, mostly writer-side perspective. #1716
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Packaging | |
on: | |
workflow_dispatch: | |
inputs: | |
overrideVersion: | |
description: Manually force a version | |
pypiServer: | |
description: Server to publish the pip package | |
required: true | |
default: 'testpypi' | |
type: choice | |
options: | |
- 'testpypi' | |
- 'pypi' | |
pull_request: | |
push: | |
branches: | |
- master | |
- release_[0-9]+ | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+* | |
release: | |
types: | |
- published | |
env: | |
ADIOS2_CUSTOM_VERSION_OVERRIDE: ${{ github.event.inputs.overrideVersion }} | |
jobs: | |
make_sdist: | |
name: Make SDist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate common version file | |
run: cmake -P scripts/ci/gh-actions/config/adios-version.cmake && echo VERSION.TXT | |
- name: Build SDist | |
run: pipx run build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: artifact_sdist | |
path: dist/*.tar.gz | |
build_wheels: | |
name: Wheel on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# os: [ubuntu-latest, windows-latest, macos-latest] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate common version file | |
run: cmake -P scripts/ci/gh-actions/config/adios-version.cmake && echo VERSION.TXT | |
- uses: pypa/cibuildwheel@v2.16 | |
env: | |
CIBW_BUILD: cp*-manylinux_x86_64 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifact_wheels | |
path: wheelhouse/*.whl | |
upload_pypi: | |
needs: [build_wheels, make_sdist] | |
environment: pypi | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
if: | | |
github.event_name == 'workflow_dispatch' && github.event.inputs.pypiServer == 'pypi' || | |
( | |
github.event_name == 'release' && | |
github.event.action == 'published' | |
) | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
merge-multiple: true | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
upload_test_pypi: | |
needs: [build_wheels, make_sdist] | |
environment: testpypi | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
if: github.event_name == 'workflow_dispatch' && github.event.inputs.pypiServer == 'testpypi' | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
merge-multiple: true | |
- run: ls -R dist | |
- name: Publish package distributions to TestPyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ |