build(deps): bump actions/upload-artifact from 4.4.2 to 4.4.3 #139
Workflow file for this run
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: macos | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'doc/**' | |
- 'README.md' | |
- 'README_zh_CN.md' | |
- 'DEVELOPNOTE.md' | |
- '.readthedocs.yaml' | |
tags: | |
- V** | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'doc/**' | |
- 'README.md' | |
- 'README_zh_CN.md' | |
- 'DEVELOPNOTE.md' | |
- '.readthedocs.yaml' | |
workflow_dispatch: | |
jobs: | |
macos: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v4.0.0 | |
with: | |
version: '6.5.3' | |
aqtversion: ==3.1.7 | |
- name: Install prerequisites | |
shell: bash -l {0} | |
run: | | |
ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2 > /dev/null | |
brew reinstall --build-from-source cmake | |
ln -s /usr/local/Cellar/cmake/3.27.1 /usr/local/Cellar/cmake/3.26.4 | |
brew install create-dmg | |
ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2 > /dev/null | |
brew install --build-from-source cmake | |
git clone https://github.com/opencv/opencv.git --branch 4.0.0 --depth 1 | |
cmake -S opencv -B opencv/build -D ENABLE_PRECOMPILED_HEADERS=OFF -D WITH_MSMF=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_TESTS=OFF -D BUILD_WITH_DEBUG_INFO=OFF -D BUILD_DOCS=OFF -D WITH_JPEG=OFF -D WITH_FFMPEG=OFF -D CMAKE_BUILD_TYPE=RELEASE | |
cd ./opencv/build | |
make | |
sudo make install | |
- name: Build all | |
run: | | |
git fetch --tags --force | |
sed -i'.original' -e 's/--long --dirty/--long/g' ./tools/generate_info.sh | |
sed -i'.original' -e 's/QT_DIR=\/opt\/Qt6.2.0\/6.2.0\/gcc_64/QT_DIR=$(cd "$(dirname "$0")";pwd)\/..\/Qt\/6.5.3\/macos/g' build_dmg.sh | |
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' build_dmg.sh | |
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' partform_unix.pri | |
./build_dmg.sh | |
- name: Upload build asserts | |
uses: actions/upload-artifact@v4.4.3 | |
with: | |
name: YUVviewer_macos | |
path: | | |
./dmgOut/*.dmg | |
- name: Run tests | |
run: | | |
sudo hdiutil attach ./build_release/out/YUVviewer.dmg | |
/Volumes/YUVviewer/YUVviewer.app/Contents/MacOS/YUVviewer --version | |
macos_arm64: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v4.0.0 | |
with: | |
version: '6.5.3' | |
aqtversion: ==3.1.7 | |
- name: Install prerequisites | |
shell: bash -l {0} | |
run: | | |
ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2 > /dev/null | |
brew reinstall --build-from-source cmake | |
ln -s /usr/local/Cellar/cmake/3.27.1 /usr/local/Cellar/cmake/3.26.4 | |
brew install create-dmg | |
ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2 > /dev/null | |
brew install --build-from-source cmake | |
git clone https://github.com/opencv/opencv.git --branch 4.0.0 --depth 1 | |
cmake -S opencv -B opencv/build -D ENABLE_PRECOMPILED_HEADERS=OFF -D WITH_MSMF=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_TESTS=OFF -D BUILD_WITH_DEBUG_INFO=OFF -D BUILD_DOCS=OFF -D WITH_JPEG=OFF -D WITH_FFMPEG=OFF -D CMAKE_BUILD_TYPE=RELEASE | |
cd ./opencv/build | |
make | |
sudo make install | |
- name: Build all | |
run: | | |
git fetch --tags --force | |
sed -i'.original' -e 's/--long --dirty/--long/g' ./tools/generate_info.sh | |
sed -i'.original' -e 's/QT_DIR=\/opt\/Qt6.2.0\/6.2.0\/gcc_64/QT_DIR=$(cd "$(dirname "$0")";pwd)\/..\/Qt\/6.5.3\/macos/g' build_dmg.sh | |
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' build_dmg.sh | |
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' partform_unix.pri | |
./build_dmg.sh | |
- name: Upload build asserts | |
uses: actions/upload-artifact@v4.4.3 | |
with: | |
name: YUVviewer_macos_arm64 | |
path: | | |
./dmgOut/*.dmg | |
- name: Run tests | |
run: | | |
sudo hdiutil attach ./build_release/out/YUVviewer.dmg | |
/Volumes/YUVviewer/YUVviewer.app/Contents/MacOS/YUVviewer --version | |