cppcore: implement memoization once for all features (#323) #65
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: Build | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
call-test-workflow: | |
uses: BlueBrain/eFEL/.github/workflows/test.yml@master | |
tag: | |
name: Bump version, push tag and make a release | |
needs: call-test-workflow | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Bump version and push tag | |
uses: anothrNick/github-tag-action@1.64.0 | |
if: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
id: tag | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: false | |
DEFAULT_BUMP: patch | |
- name: Get and store tag from 'Bump version and push tag' step | |
if: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
run: echo "TAG_NAME=${{ steps.tag.outputs.new_tag }}" >> $GITHUB_ENV | |
- name: Get and store tag from triggered tag push | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
run: echo "TAG_NAME=${{ github.ref_name }}" >> $GITHUB_ENV | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ env.TAG_NAME }} | |
name: ${{ env.TAG_NAME }} | |
generate_release_notes: true | |
wheels: | |
needs: [call-test-workflow, tag] | |
name: Build wheels for ${{ matrix.python }} ${{ matrix.os }} ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04, macos-latest, windows-latest] | |
python: [cp38, cp39, cp310, cp311] | |
arch: [x86_64, amd64] | |
exclude: | |
- os: macos-latest | |
arch: amd64 | |
- os: ubuntu-22.04 | |
arch: amd64 | |
- os: windows-latest | |
arch: x86_64 | |
env: | |
CIBW_BUILD: ${{ matrix.python }}*${{ matrix.arch }} | |
CIBW_TEST_REQUIRES: pytest neo[neomatlabio]>=0.5.1 pytest-xdist>=3.3.1 | |
CIBW_TEST_COMMAND: pytest -sx -n auto {project}/tests | |
CIBW_SKIP: "*-musllinux_*" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install cibuildwheel | |
run: pip install cibuildwheel | |
- name: Build wheels | |
run: cibuildwheel --output-dir wheelhouse | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.arch }} | |
path: ./wheelhouse/*.whl | |
tarball: | |
name: Build tarball | |
runs-on: ubuntu-22.04 | |
needs: [call-test-workflow, tag] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Build a source tarball | |
run: | |
python setup.py sdist | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: tarball | |
path: dist | |
publish: | |
name: Release and Publish on PyPI | |
runs-on: ubuntu-22.04 | |
needs: [call-test-workflow, tag, wheels, tarball] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Download all artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
path: artifacts | |
- name: Put artifacts into dist directory | |
run: | | |
mkdir -p dist | |
find artifacts -type f \( -iname \*.whl -o -iname \*.tar.gz \) -exec mv {} dist \; | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_PASSWORD }} |