Skip to content

Commit

Permalink
CI: macOS build
Browse files Browse the repository at this point in the history
attempt to fix macOS CI blindly...
  • Loading branch information
BLumia committed May 18, 2024
1 parent 2baa7e7 commit 5be0609
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Conan
id: conan
working-directory: ./
shell: bash
run: |
pip3 install wheel setuptools
pip3 install conan --upgrade
conan --version
conan profile detect
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
Expand All @@ -20,8 +29,9 @@ jobs:
- name: Build
working-directory: ./
run: |
cmake -B build .
cmake --build build -j
conan install --requires=icu/74.2 --build=missing
cmake . --preset conan-default
cmake --build --preset conan-release
- name: Package
id: package
working-directory: ./
Expand Down

0 comments on commit 5be0609

Please sign in to comment.