Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/build-cython.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build Cython Extensions on PR

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main

jobs:
build-cython:
if: github.event.pull_request.draft == false
runs-on: windows-latest
permissions:
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'

- name: Install Cython and dependencies
run: |
python -m pip install --upgrade pip
pip install cython setuptools

- name: Build Cython extensions
run: python setup.py build_ext --inplace

- name: Commit and push back to PR branch
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore: auto-build Cython extensions"
file_pattern: "*.pyd"
add_options: "--force"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified amoginarium/shared/utility/_ccolor.cp312-win_amd64.pyd
Binary file not shown.
Binary file not shown.
Binary file modified amoginarium/shared/utility/_cvectors.cp312-win_amd64.pyd
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified amoginarium/shared/utility/_pid_controller.cp312-win_amd64.pyd
Binary file not shown.
Binary file modified amoginarium/shared/utility/_tuplemath.cp312-win_amd64.pyd
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.