Phase D3a: rename the shared C API infrastructure to streamr* names #321
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: validate iOS | |
| env: | |
| BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
| ARCHFLAGS: --ios | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| workflow_dispatch: | |
| jobs: | |
| install-lint: | |
| if: contains(github.event.head_commit.message, 'iosbuild') || contains(github.event.pull_request.title, 'iosbuild') || github.event_name == 'workflow_dispatch' | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| fetch-depth: 0 | |
| submodules: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: install | |
| uses: ./.github/workflows/reusable/cached-install | |
| - name: upload xcframework | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: streamr-xcframework | |
| path: dist/ios/streamr.xcframework | |
| retention-days: 30 |