fixup! Add custom action and unified Linux build #87
This file contains 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 Contrib PR:5.x macOS x86_64 | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/OCV-Contrib-PR-5.x-macOS-x86_64.yaml' | ||
workflow_call: | ||
concurrency: | ||
group: OCV-Contrib-PR-5.x-macOS-x86_64-${{ github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
EXTRA_CMAKE_OPTIONS: '-DBUILD_DOCS=ON -DPYTHON_DEFAULT_EXECUTABLE=/usr/bin/python3 -DOPENCV_DOWNLOAD_PATH=$BINARIES_CACHE -DBUILD_EXAMPLES=ON -DOPENCV_ENABLE_NONFREE=ON -DBUILD_ZLIB=OFF' | ||
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 }} | ||
ANT_HOME: '/usr/share/ant' | ||
PYTHONPATH: '${{ github.workspace }}/build/python_loader:$PYTHONPATH' | ||
OPENCV_TEST_DATA_PATH: '${{ github.workspace }}/opencv_extra/testdata' | ||
GTEST_FILTER_STRING: '-tracking_GOTURN.GOTURN/*:Tracking/DistanceAndOverlap.TLD/2:Tracking/DistanceAndOverlap.Scaled_Data_TLD/2:InterpolatorTest.RICReferenceAccuracy' | ||
jobs: | ||
BuildAndTest: | ||
runs-on: opencv-cn-mac-x86-64 | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- name: Brief system information | ||
timeout-minutes: 60 | ||
run: bash $GIT_CACHE/print_system_information.sh | ||
- name: Setup infra environment | ||
timeout-minutes: 60 | ||
if: ${{ github.event.repository.name == 'ci-gha-workflow' }} | ||
run: echo "TARGET_BRANCH_NAME=5.x" >> $GITHUB_ENV | ||
- name: Setup test environment | ||
if: ${{ github.event.repository.name != 'ci-gha-workflow' }} | ||
run: echo "EXTRA_GTEST_OPTIONS=--skip_unstable=1" >> $GITHUB_ENV | ||
- 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: find . -mindepth 1 -delete | ||
working-directory: ${{ github.workspace }} | ||
- name: Fetch opencv_contrib | ||
timeout-minutes: 60 | ||
run: git clone --branch ${{ env.TARGET_BRANCH_NAME }} --reference $GIT_CACHE/opencv_contrib.git https://github.com/opencv/opencv_contrib.git | ||
working-directory: ${{ github.workspace }} | ||
- name: Merge opencv_contrib with ${{ env.SOURCE_BRANCH_NAME }} branch | ||
timeout-minutes: 60 | ||
if: ${{ github.event.repository.name != 'ci-gha-workflow' }} | ||
run: git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}" | ||
working-directory: ${{ github.workspace }}/opencv_contrib | ||
- name: Clone opencv | ||
timeout-minutes: 60 | ||
run: git clone --single-branch --branch ${{ env.TARGET_BRANCH_NAME }} --reference $GIT_CACHE/opencv.git https://github.com/opencv/opencv.git | ||
working-directory: ${{ github.workspace }} | ||
- name: Merge opencv with ${{ env.SOURCE_BRANCH_NAME }} branch | ||
timeout-minutes: 60 | ||
if: ${{ github.event.repository.name != 'ci-gha-workflow' }} | ||
run: | | ||
OPENCV_FORK=$(git ls-remote --heads "https://github.com/${{ env.PR_AUTHOR }}/opencv" "${{ env.SOURCE_BRANCH_NAME }}") || true | ||
if [[ ! -z "$OPENCV_FORK" ]]; then | ||
echo "Merge opencv with ${{ env.SOURCE_BRANCH_NAME }} branch" | ||
git pull -v "https://github.com/${{ env.PR_AUTHOR }}/opencv" "${{ env.SOURCE_BRANCH_NAME }}" | ||
else | ||
echo "No merge since ${{ env.PR_AUTHOR }}/opencv does not have branch ${{ env.SOURCE_BRANCH_NAME }}" | ||
fi | ||
working-directory: ${{ github.workspace }}/opencv | ||
- name: Clone opencv_extra | ||
timeout-minutes: 60 | ||
run: git clone --single-branch --branch ${{ env.TARGET_BRANCH_NAME }} --reference $GIT_CACHE/opencv_extra.git https://github.com/opencv/opencv_extra.git | ||
working-directory: ${{ github.workspace }} | ||
- name: Merge opencv_extra with ${{ env.SOURCE_BRANCH_NAME }} branch | ||
timeout-minutes: 60 | ||
if: ${{ github.event.repository.name != 'ci-gha-workflow' }} | ||
run: | | ||
OPENCV_EXTRA_FORK=$(git ls-remote --heads "https://github.com/${{ env.PR_AUTHOR }}/opencv_extra" "${{ env.SOURCE_BRANCH_NAME }}") || true | ||
if [[ ! -z "$OPENCV_EXTRA_FORK" ]]; then | ||
echo "Merge opencv_extra with ${{ env.SOURCE_BRANCH_NAME }} branch" | ||
git pull -v "https://github.com/${{ env.PR_AUTHOR }}/opencv_extra" "${{ env.SOURCE_BRANCH_NAME }}" | ||
else | ||
echo "No merge since ${{ env.PR_AUTHOR }}/opencv_extra does not have branch ${{ env.SOURCE_BRANCH_NAME }}" | ||
fi | ||
working-directory: ${{ github.workspace }}/opencv_extra | ||
- name: Extra DNN models update | ||
timeout-minutes: 60 | ||
run: | | ||
DOWNLOAD_MODELS_FILE='download_models.py' | ||
LATEST_SAVED_HASH=$(cat $DNN_MODELS/dnn/latest-hash-${{ env.TARGET_BRANCH_NAME }}.txt) | ||
LATEST_HASH=$(sha256sum opencv_extra/testdata/dnn/$DOWNLOAD_MODELS_FILE | awk '{print $1}') | ||
if [[ $LATEST_HASH == $LATEST_SAVED_HASH ]]; then | ||
echo "DNN models are up to date" | ||
echo "OPENCV_DNN_TEST_DATA_PATH=$DNN_MODELS" >> $GITHUB_ENV | ||
else | ||
echo "Updating DNN models list" | ||
echo "OPENCV_DNN_TEST_DATA_PATH=${{ github.workspace }}/new-dnn-models" >> $GITHUB_ENV && OPENCV_DNN_TEST_DATA_PATH="${{ github.workspace }}/new-dnn-models" | ||
mkdir -p "$OPENCV_DNN_TEST_DATA_PATH" | ||
rsync -a --exclude=$DOWNLOAD_MODELS_FILE $DNN_MODELS/* $OPENCV_DNN_TEST_DATA_PATH | ||
cp opencv_extra/testdata/dnn/download_models.py $OPENCV_DNN_TEST_DATA_PATH/dnn | ||
cd $OPENCV_DNN_TEST_DATA_PATH/dnn && python3 download_models.py | ||
fi | ||
working-directory: ${{ github.workspace }} | ||
- name: Configure OpenCV | ||
timeout-minutes: 60 | ||
run: | | ||
cmake -B build -G Ninja ${{ env.EXTRA_CMAKE_OPTIONS }} -DOPENCV_EXTRA_MODULES_PATH=opencv_contrib/modules opencv | ||
working-directory: ${{ github.workspace }} | ||
- name: Build OpenCV | ||
timeout-minutes: 100 | ||
id: build-opencv-contrib | ||
run: | | ||
ninja -j $PARALLEL_JOBS | tee ${{ github.workspace }}/build/build-log.txt | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Warnings check | ||
timeout-minutes: 60 | ||
run: python3 $GIT_CACHE/warnings-handling.py | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:3d | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_3d --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:bgsegm | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_bgsegm --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:bioinspired | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_bioinspired --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:calib | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
env: | ||
OPENCV_OPENCL_CACHE_ENABLE: 0 | ||
run: ./bin/opencv_test_calib --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:core | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_core --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:dnn | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_dnn --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:dnn_superres | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_dnn_superres --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:face | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_face --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:features | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_features --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:flann | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_flann --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:fuzzy | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_fuzzy --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:gapi | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_gapi --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
- working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:hdf | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_hdf --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:highgui | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_highgui --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:img_hash | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_img_hash --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:imgcodecs | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_imgcodecs --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:imgproc | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_imgproc --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:intensity_transform | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_intensity_transform --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:line_descriptor | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_line_descriptor --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:mcc | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_mcc --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:ml | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_ml --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:objdetect | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_objdetect --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:optflow | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_optflow --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:phase_unwrapping | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_phase_unwrapping --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:photo | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_photo --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:quality | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_quality --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:rapid | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_rapid --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:reg | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_reg --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:rgbd | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_rgbd --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:saliency | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_saliency --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:sfm | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_sfm --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:shape | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_shape --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:stereo | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_stereo --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:stitching | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_stitching --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:structured_light | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_structured_light --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:superres | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_superres --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:text | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_text --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:tracking | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_tracking --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:video | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_video --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:videoio | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_videoio --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:videostab | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_videostab --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:wechat_qrcode | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_wechat_qrcode --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:xfeatures2d | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_xfeatures2d --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:ximgproc | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_ximgproc --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:xobjdetect | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_xobjdetect --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:xphoto | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_xphoto --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:xstereo | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_xstereo --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Accuracy:ml | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_test_ml --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }} | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:3d | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_3d --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:bioinspired | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_bioinspired --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:calib | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_calib --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:core | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_core --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:dnn | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_dnn --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:dnn_superres | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_dnn_superres --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:features | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_features --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:gapi | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_gapi --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:imgcodecs | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_imgcodecs --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:imgproc | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_imgproc --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:line_descriptor | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_line_descriptor --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:objdetect | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_objdetect --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:optflow | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_optflow --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:photo | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_photo --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:reg | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_reg --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:stereo | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_stereo --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:stitching | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_stitching --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:superres | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_superres --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:tracking | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_tracking --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:video | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_video --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:videoio | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_videoio --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:xfeatures2d | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_xfeatures2d --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:ximgproc | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_ximgproc --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:xobjdetect | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_xobjdetect --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:xphoto | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_xphoto --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Performance:xstereo | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: ./bin/opencv_perf_xstereo --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --gtest_filter=${{ env.GTEST_FILTER_STRING }} --perf_threads=$PARALLEL_JOBS | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Python3 | ||
timeout-minutes: 60 | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: python3 ../opencv/modules/python/test/test.py --repo ../opencv -v | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Java | ||
timeout-minutes: 60 | ||
id: java-test | ||
if: ${{ always() && steps.build-opencv-contrib.outcome == 'success' }} | ||
run: python3 ../opencv/modules/ts/misc/run.py . -a -t java | ||
working-directory: ${{ github.workspace }}/build | ||
- name: Save Unit Test Results | ||
timeout-minutes: 60 | ||
uses: actions/upload-artifact@v4 | ||
if: ${{ always() && steps.java-test.outcome == 'success' && steps.build-opencv-contrib.outcome == 'success' }} | ||
with: | ||
name: junit-html-macos-x86-64 | ||
path: build/java_test/testResults/junit-noframes.html |