Skip to content

Commit

Permalink
chore(CI): macOS build with exiv2 support enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
BLumia committed Dec 29, 2024
1 parent 2de9ff8 commit d229662
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,25 @@ jobs:
with:
version: '6.8.1'
modules: 'qtimageformats'
- name: Run a qt project
- name: Install Conan and Dependencies
id: conan
working-directory: ./
shell: bash
run: |
cmake . -Bbuild -DTRANSLATION_RESOURCE_EMBEDDING=ON
cmake --build build
pip3 install wheel setuptools
pip3 install conan --upgrade
conan --version
conan profile detect
conan install --requires=exiv2/0.28.3 --generator CMakeDeps --generator CMakeToolchain --build=missing
- name: Build
run: |
cmake . -DTRANSLATION_RESOURCE_EMBEDDING=ON --preset conan-release
cmake . --preset conan-release
- name: Deploy
run: |
macdeployqt ./build/ppic.app -dmg
macdeployqt ./ppic.app -dmg
ls
- uses: actions/upload-artifact@v4
with:
name: "macos-bundle"
path: build/*.dmg
path: "*.dmg"

0 comments on commit d229662

Please sign in to comment.