Skip to content

Commit

Permalink
h
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz committed Dec 24, 2024
1 parent ca1a0a2 commit 37373eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,15 @@ jobs:
key: ${{ runner.os }}-conan-user-${{ hashFiles('**/conanfile.py') }}${{ env.C2_CONAN_CACHE_SUFFIX }}
path: ~/.conan2/

- uses: actions/setup-python@v5
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macos')
with:
python-version: "3.13"

- name: Install Conan (Windows/macOS)
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macos')
run: |
python3 -c "import site; import sys; print(f'{site.USER_BASE}\\Python{sys.version_info.major}{sys.version_info.minor}\\Scripts')" >> "$GITHUB_PATH"
pip3 install --user "conan==${{ env.CONAN_VERSION }}"
pip install conan
shell: bash

- name: Setup Conan (Windows/macOs)
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ jobs:
modules: ${{ env.QT_MODULES }}
version: ${{ matrix.qt-version }}

- uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install dependencies
run: |
brew install openssl rapidjson p7zip create-dmg cmake ninja
Expand Down

0 comments on commit 37373eb

Please sign in to comment.