Skip to content

Commit

Permalink
replace vcpkg installed python
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Oct 19, 2024
1 parent 8fbc323 commit 215e896
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,21 @@ jobs:
echo "CMake toolchain file: $TOOLCHAIN_FILE"
$GITHUB_WORKSPACE/scripts/install_prerequisites.sh -v -u -m ${{matrix.package_manager}} all
- name: "(vcpkg only) remove python"
if: ${{ matrix.package_manager == 'vcpkg' }}
run: |
vcpkg remove python3
- uses: actions/setup-python@v5
if: ${{ matrix.package_manager == 'vcpkg' }}
with:
python-version: '3.12'

- name: "(vcpkg only) install setuptools"
if: ${{ matrix.package_manager == 'vcpkg' }}
run: |
pip install setuptools
- name: Configure CMake
run: >
cmake -G Ninja -B build
Expand Down

0 comments on commit 215e896

Please sign in to comment.