-
Notifications
You must be signed in to change notification settings - Fork 2
Add workflow to check pyfftw #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
seanlaw
merged 46 commits into
stumpy-dev:main
from
NimaSarajpoor:stumpy_actions_with_pixi
Feb 16, 2026
Merged
Changes from 43 commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
10ca2f8
Add yml file to test STUMPY via pixi
NimaSarajpoor c2d1c36
minor change
NimaSarajpoor 3e2f21f
minor change
NimaSarajpoor 2f109e4
Merge pull request #1 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor b0713aa
fix name
NimaSarajpoor 2128a47
Merge pull request #2 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 57b5c9f
add my own secret and enable environment in Github Actions
NimaSarajpoor 053e2f3
Merge pull request #3 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 7e59319
add log level
NimaSarajpoor bfd6d64
Merge pull request #4 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor e6f4380
add check token
NimaSarajpoor 24b50a7
Merge pull request #5 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 5b3907b
attemp2 in token authentication
NimaSarajpoor e7d50b0
Merge pull request #6 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 6ed5a40
set cache to false
NimaSarajpoor db37d29
Merge pull request #7 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 0976d65
keep core stuff
NimaSarajpoor f201647
Merge pull request #8 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor f869860
reverted some of the changes
NimaSarajpoor 97304ea
minor change
NimaSarajpoor 412afe3
Merge branch 'main' into stumpy_actions_with_pixi
NimaSarajpoor a8eed98
Merge pull request #9 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 2c56e04
Removed check token
NimaSarajpoor b0c848d
minor change
NimaSarajpoor 37ab60e
Merge pull request #10 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 0b62779
potential fix for missing env
NimaSarajpoor e0845b6
Merge pull request #11 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor ef4c2a0
use pixi to run commands
NimaSarajpoor 9607ceb
Merge pull request #12 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor 6e6cdd9
explicit bash command
NimaSarajpoor b0ffdda
Merge pull request #13 from NimaSarajpoor/stumpy_actions_with_pixi
NimaSarajpoor f44748e
Revised workflow
NimaSarajpoor 61a211f
revise test scope
NimaSarajpoor 0c86c60
minor changes
NimaSarajpoor 1a80c52
deleted redudant line
NimaSarajpoor 22ae633
Merge branch 'stumpy-dev:main' into main
NimaSarajpoor ac25fe2
Merge branch 'main' into stumpy_actions_with_pixi
NimaSarajpoor 7ef4412
add tmp file to check pyfftw with pixi
NimaSarajpoor e4c918c
fix name of workflow
NimaSarajpoor e0aeb09
removed extra file
NimaSarajpoor 6e90533
added step to get pixi lis
NimaSarajpoor c8ed2c2
install optional dependencies fftw pyfftw
NimaSarajpoor abf9e0d
grep for fftw and pyfftw only
NimaSarajpoor cfcdc29
fixed stumpy installation, and increase verbosity
NimaSarajpoor 97f44bc
remove verbosity
NimaSarajpoor 8d5ab74
consistent format in naming steps
NimaSarajpoor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| name: Check pyFFTW | ||
| on: | ||
| workflow_dispatch: | ||
| schedule: | ||
| - cron: '0 14 * * *' # 2pm UTC == 9am EST | ||
| jobs: | ||
| check_pyfftw: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| matrix: | ||
| os: [ubuntu-latest, macos-latest, windows-latest] | ||
|
|
||
| steps: | ||
| - name: Checkout STUMPY | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: stumpy-dev/stumpy | ||
|
|
||
| - name: Get Required Python Version | ||
| id: python | ||
| run: | | ||
| python -m pip install pandas packaging lxml | ||
| echo "version=$(python ./versions.py -pkg pyfftw)" >> $GITHUB_OUTPUT | ||
| shell: bash | ||
|
|
||
| # Checkout python version | ||
| - name: Set Up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "${{ steps.python.outputs.version }}" | ||
|
|
||
| - name: Display Python Version | ||
| run: python -c "import sys; print(sys.version)" | ||
| shell: bash | ||
|
|
||
| - name: Set Up Pixi | ||
| uses: prefix-dev/setup-pixi@v0.9.4 | ||
| with: | ||
| pixi-version: v0.62.2 | ||
|
|
||
| - name: Set Up Python | ||
| run: pixi add python="${{ steps.python.outputs.version }}" | ||
| shell: bash | ||
|
|
||
| - name: Install Conda-Forge STUMPY from source | ||
| run: pixi add stumpy | ||
|
|
||
| - name: Install FFTW and pyFFTW | ||
| run: pixi add fftw pyfftw | ||
| shell: bash | ||
|
|
||
| - name: Display Python Version | ||
| run: pixi run python -c "import sys; print(sys.version)" | ||
| shell: bash | ||
|
|
||
| - name: Show Full Numba Environment | ||
| run: pixi run python -m numba -s | ||
| shell: bash | ||
|
|
||
| - name: Show installed packages fftw and pyfftw | ||
| run: pixi list | grep -E 'fftw|pyfftw' | ||
| shell: bash | ||
|
|
||
| - name: Run Unit Tests | ||
|
NimaSarajpoor marked this conversation as resolved.
Outdated
|
||
| run: pixi run bash ./test.sh unit | ||
| shell: bash | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.