Doc: explain why the offsets in MPI-IO module may not be the true values #581
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: Build Wheels | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - darshan-util/** | |
| - include/** | |
| - .github/workflows/build_wheels.yml | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - darshan-util/** | |
| - include/** | |
| - .github/workflows/build_wheels.yml | |
| workflow_dispatch: | |
| jobs: | |
| get_commit_message: | |
| name: Get commit message | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'darshan-hpc/darshan' | |
| outputs: | |
| message: ${{ steps.commit_message.outputs.message }} | |
| steps: | |
| - name: Checkout darshan | |
| uses: actions/checkout@v3 | |
| # Gets the correct commit message for pull request | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Get commit message | |
| id: commit_message | |
| run: | | |
| set -xe | |
| COMMIT_MSG=$(git log --no-merges -1 --oneline) | |
| echo "message=$COMMIT_MSG" >> $GITHUB_OUTPUT | |
| echo github.ref ${{ github.ref }} | |
| build_wheels: | |
| name: Build wheels on ${{ matrix.os }} | |
| needs: get_commit_message | |
| if: >- | |
| contains(needs.get_commit_message.outputs.message, '[wheel build]') || | |
| github.event_name == 'workflow_dispatch' | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, macos-13] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build wheels | |
| uses: pypa/[email protected] | |
| with: | |
| package-dir: ./darshan-util/pydarshan | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: pydarshan-wheels-${{ matrix.os }} | |
| path: ./wheelhouse/*.whl | |
| retention-days: 0 | |
| merge_artifacts: | |
| name: Merge built wheel artifacts | |
| needs: build_wheels | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/upload-artifact/merge@v4 | |
| with: | |
| name: pydarshan-wheels-all |