OCV PR:5.x iOS #1371
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: OCV PR:5.x iOS | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/OCV-PR-5.x-iOS.yaml' | |
| workflow_call: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| concurrency: | |
| group: OCV-PR-5.x-iOS-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| PR_AUTHOR: ${{ github.event.pull_request.user.login }} | |
| PR_AUTHOR_FORK: ${{ github.event.pull_request.head.repo.full_name }} | |
| SOURCE_BRANCH_NAME: ${{ github.head_ref }} | |
| TARGET_BRANCH_NAME: ${{ github.base_ref }} | |
| jobs: | |
| Build: | |
| runs-on: opencv-cn-mac-x86-64 | |
| steps: | |
| - name: Setup environment | |
| timeout-minutes: 60 | |
| run: | | |
| if [[ "${{ github.event.repository.name }}" == "ci-gha-workflow" || "${{ github.event_name }}" == "schedule" ]]; then | |
| echo "TARGET_BRANCH_NAME=5.x" >> $GITHUB_ENV | |
| else | |
| echo "BUILD_PRECOMMIT=1" >> $GITHUB_ENV | |
| fi | |
| - name: PR info | |
| timeout-minutes: 60 | |
| run: | | |
| echo "PR Author: ${{ env.PR_AUTHOR }}" | |
| echo "PR Author fork: ${{ env.PR_AUTHOR_FORK }}" | |
| echo "Source branch name: ${{ env.SOURCE_BRANCH_NAME }}" | |
| echo "Target branch name: ${{ env.TARGET_BRANCH_NAME }}" | |
| - name: Clean | |
| timeout-minutes: 60 | |
| run: cd ${{ github.workspace }} && find . -mindepth 1 -delete | |
| - name: Fetch opencv | |
| timeout-minutes: 60 | |
| run: cd ${{ github.workspace }} && git clone --branch ${{ env.TARGET_BRANCH_NAME }} --reference $GIT_CACHE/opencv.git https://github.com/opencv/opencv.git opencv | |
| - name: Merge opencv with ${{ env.SOURCE_BRANCH_NAME }} branch | |
| timeout-minutes: 60 | |
| if: ${{ startsWith(github.event.repository.name, 'opencv') && github.event_name == 'pull_request' }} | |
| run: | | |
| cd ${{ github.workspace }}/opencv | |
| git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}" | |
| - name: Build OpenCV iOS Framework | |
| timeout-minutes: 120 | |
| run: | | |
| cd ${{ github.workspace }} && python3 opencv/platforms/ios/build_framework.py ios | |
| - name: Create Artifact | |
| timeout-minutes: 10 | |
| run: cd ${{ github.workspace }}/ios && zip -r -9 -y opencv-5.x-ios-framework.zip opencv2.framework | |
| - name: Upload Artifact | |
| timeout-minutes: 60 | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || env.RUNNER_DEBUG == 1 }} | |
| with: | |
| name: OpenCViOSFramework | |
| path: ${{ github.workspace }}/ios/opencv-5.x-ios-framework.zip |