Check PyPI Wheels #25
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
| name: Check PyPI Wheels | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 14 * * *' # 2pm UTC == 9am EST | |
| jobs: | |
| generate_python_matrix: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| python_versions: ${{ steps.set-matrix.outputs.python_versions }} | |
| steps: | |
| - name: Checkout STUMPY | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: stumpy-dev/stumpy | |
| - name: Upgrade Pip, Install Minimum Requirements | |
| run: | | |
| python -m pip install --upgrade pip pandas lxml | |
| shell: bash | |
| - name: Generate Python versions | |
| id: set-matrix | |
| run: | | |
| MIN_PYTHON=$(python ./versions.py -mode min | grep python | awk '{print $2}') | |
| MAX_PYTHON=$(python ./versions.py -mode max | grep python | awk '{print $2}') | |
| echo "python_versions=$(python ./versions.py -mode range $MIN_PYTHON $MAX_PYTHON)" >> $GITHUB_OUTPUT | |
| shell: bash | |
| check_pypi_wheels: | |
| needs: generate_python_matrix | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ${{ fromJSON(needs.generate_python_matrix.outputs.python_versions) }} | |
| steps: | |
| - name: Set Up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "${{ matrix.python-version }}" | |
| - name: Display Python Version | |
| run: python -c "import sys; print(sys.version)" | |
| shell: bash | |
| - name: Upgrade Pip | |
| run: python -m pip install --upgrade pip | |
| shell: bash | |
| - name: Install STUMPY Dependencies | |
| run: | | |
| python -m pip install stumpy[ci] | |
| python -m pip install polars | |
| shell: bash | |
| - name: Install OpenMP | |
| run: | | |
| if [ "$RUNNER_OS" == "macOS" ]; then | |
| echo "Installing OpenMP" | |
| brew install libomp | |
| echo "Linking OpenMP" | |
| brew link --force libomp | |
| echo "Find OpenMP Linking Location" | |
| libfile=`brew list libomp --verbose | grep libomp.dylib` | |
| echo $libfile | |
| echo "Changing @rpath for the omppool.cpython-x-darwin.so shared object to look in $libfile" | |
| ls "$(python -c 'import site; print(site.getsitepackages()[0])')"/numba/np/ufunc/omppool.*.so | xargs install_name_tool -change @rpath/libomp.dylib $libfile | |
| fi | |
| shell: bash | |
| - name: Show Full Numba Environment | |
| run: python -m numba -s | |
| shell: bash | |
| - name: Checkout STUMPY | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: stumpy-dev/stumpy | |
| - name: Run Unit Tests | |
| run: ./test.sh | |
| shell: bash |