Skip to content

Commit

Permalink
remove vcpkg installed python
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Oct 19, 2024
1 parent a4e0236 commit 1dc9f23
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ jobs:
with:
vcpkgDirectory: '${{github.workspace}}/scripts/vcpkg'

- name: "(vcpkg only) setuptools"
if: ${{ matrix.package_manager == 'vcpkg' }}
run: |
pip install setuptools
- name: "(vcpkg only) Setup CMake Toolchain file"
if: ${{ matrix.package_manager == 'vcpkg' }}
run: |
Expand Down Expand Up @@ -85,6 +80,16 @@ 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
- 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 1dc9f23

Please sign in to comment.