pip test #263
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: pip test | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| git-ref: | |
| description: checkout this tag (overrieds branch) | |
| required: false | |
| tags: | |
| description: tag to create a release | |
| required: false | |
| skip_test: | |
| description: skip test | |
| required: false | |
| jobs: | |
| clone: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Clone Repository (Latest)' | |
| uses: actions/checkout@v4 | |
| - name: 'Clone Repository (Custom Ref)' | |
| uses: actions/checkout@v4 | |
| if: github.event.inputs.git-ref != '' | |
| with: | |
| ref: ${{ github.event.inputs.git-ref }} | |
| - name: 'Create release' | |
| if: github.event.inputs.tags != null | |
| uses: softprops/action-gh-release@v2 | |
| id : create_release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| name: Release ${{ github.event.inputs.tags }} | |
| tag_name: ${{ github.event.inputs.tags }} | |
| draft: true | |
| prerelease: true | |
| build_pip: | |
| needs: [clone] | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| name: x86_64 | |
| cpython-version: 311 | |
| python-version: "3.11" | |
| platform_id: manylinux_x86_64 | |
| cibw_manylinux: manylinux2014 | |
| cibw_arch: x86_64 | |
| - os: macos-14 | |
| name: MAC_ARM | |
| cpython-version: 311 | |
| python-version: "3.11" | |
| platform_id: macosx_arm64 | |
| cibw_manylinux: macosx_arm64 | |
| - os: ubuntu-latest | |
| name: x86_64 | |
| cpython-version: 312 | |
| python-version: "3.12" | |
| platform_id: manylinux_x86_64 | |
| cibw_manylinux: manylinux2014 | |
| cibw_arch: x86_64 | |
| - os: macos-14 | |
| name: MAC_ARM | |
| cpython-version: 312 | |
| python-version: "3.12" | |
| platform_id: macosx_arm64 | |
| cibw_manylinux: macosx_arm64 | |
| - os: ubuntu-latest | |
| name: x86_64 | |
| cpython-version: 313 | |
| python-version: "3.13" | |
| platform_id: manylinux_x86_64 | |
| cibw_manylinux: manylinux2014 | |
| cibw_arch: x86_64 | |
| - os: macos-14 | |
| name: MAC_ARM | |
| cpython-version: 313 | |
| python-version: "3.13" | |
| platform_id: macosx_arm64 | |
| cibw_manylinux: macosx_arm64 | |
| steps: | |
| - name: 'Clone Repository (Latest)' | |
| uses: actions/checkout@v4 | |
| - name: 'Clone Repository (Custom Ref)' | |
| uses: actions/checkout@v4 | |
| if: github.event.inputs.git-ref != '' | |
| with: | |
| ref: ${{ github.event.inputs.git-ref }} | |
| - name: 'echo env TEST' | |
| run: | | |
| python -v | |
| - name: 'Install swig' | |
| run: | | |
| if [ "$RUNNER_OS" == "Linux" ]; then | |
| sudo apt-get update; sudo apt-get install swig | |
| elif [ "$RUNNER_OS" == "macOS" ]; then | |
| brew install swig | |
| else | |
| echo "$RUNNER_OS not supported" | |
| exit 1 | |
| fi | |
| - name: 'Setup python' | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: 'adapt req' | |
| run: | | |
| python .github/workflows/adapt_reqirements_to_git_action.py | |
| - name: Build SDist and install | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pytest | |
| pip install wheel | |
| pipx run build --sdist | |
| pip install dist/*.tar.gz | |
| - name: 'Install UltraNest (optional)' | |
| id: ultranest_install | |
| continue-on-error: true | |
| run: | | |
| python -m pip install "ultranest>=4.0" h5py | |
| - name: 'test sdist' | |
| if: github.event.inputs.tags != null | |
| working-directory: .github/action_test/ | |
| run: | | |
| echo $(running tests!) | |
| pytest --disable-warnings --pyargs -vvv jetset.tests.test_jet_model | |
| - name: 'Upload Src Release Asset' | |
| if: matrix.python-version == '3.11' && github.event.inputs.tags != null | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: Release ${{ github.event.inputs.tags }} | |
| tag_name: ${{ github.event.inputs.tags }} | |
| prerelease: true | |
| draft: true | |
| files: dist/*.tar.gz | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/checkout@v4 | |
| if: github.event.inputs.git-ref != '' && github.event.inputs.tags != null | |
| with: | |
| ref: ${{ github.event.inputs.git-ref }} | |
| - uses: pypa/cibuildwheel@v3.1.4 | |
| if: github.event.inputs.tags != null && github.event.inputs.tags != null | |
| env: | |
| CIBW_SKIP: "*-musllinux_*" | |
| CIBW_BUILD: cp${{ matrix.cpython-version }}-${{ matrix.platform_id }} | |
| CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.cibw_manylinux }} | |
| CIBW_ARCHS: ${{ matrix.cibw_arch || 'auto' }} | |
| #CIBW_ARCHS_LINUX: ${{ matrix.cibw_arch || 'auto' }} | |
| #CIBW_ARCHS_MACOS: ${{ matrix.cibw_arch || 'auto' }} | |
| #CIBW_TEST_COMMAND: pytest --disable-warnings --pyargs -vvv jetset.tests.test_jet_model && pytest --pyargs -vvv jetset.tests.test_hadronic_energetic && pytest --pyargs -vvv jetset.tests.test_integration::TestIntegration | |
| - name: Show files | |
| if: github.event.inputs.tags != null | |
| run: ls -lh wheelhouse | |
| shell: bash | |
| - name: Verify clean directory | |
| run: git diff --exit-code | |
| shell: bash | |
| - name: 'test' | |
| if: github.event.inputs.skip_test != 'yes' | |
| working-directory: .github/action_test/ | |
| run: | | |
| echo $(running tests!) | |
| pytest --pyargs -vvv jetset.tests.test_jet_model | |
| pytest --pyargs -vvv jetset.tests.test_hadronic_energetic | |
| pytest --pyargs -vvv -s jetset.tests.test_gammapy_plugin | |
| pytest --pyargs -vvv jetset.tests.test_integration::TestIntegration -k "not test_ultranest" | |
| - name: 'test mcmc (conditional ultranest)' | |
| if: github.event.inputs.skip_test != 'yes' && steps.ultranest_install.outcome == 'success' | |
| working-directory: .github/action_test/ | |
| run: | | |
| echo "Running UltraNest-only MCMC test path" | |
| pytest --pyargs -vvv jetset.tests.test_integration::TestIntegration -k "test_ultranest" | |
| - name: 'skip ultranest mcmc test' | |
| if: github.event.inputs.skip_test != 'yes' && steps.ultranest_install.outcome != 'success' | |
| run: | | |
| echo "Skipping UltraNest-only MCMC test: ultranest install failed for this runner." | |
| - name: 'Upload Binary Release Asset' | |
| uses: softprops/action-gh-release@v2 | |
| if: github.event.inputs.tags != null | |
| with: | |
| name: Release ${{ github.event.inputs.tags }} | |
| prerelease: true | |
| draft: true | |
| tag_name: ${{ github.event.inputs.tags }} | |
| files: wheelhouse/*.whl | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |