Skip to content

Commit

Permalink
Remove dedicated Python installation in pipeline
Browse files Browse the repository at this point in the history
Windows runners are already shipped with Python.
  • Loading branch information
bertschneider committed Dec 22, 2022
1 parent 013a963 commit 29f26b4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/prerelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ jobs:
echo "CXX=$LLVM_PATH/bin/clang++" >> $GITHUB_ENV
echo "LLVM_CONFIG_PATH=$LLVM_PATH/bin/llvm-config" >> $GITHUB_ENV
echo "PATH=$PATH:$LLVM_PATH/bin" >> $GITHUB_ENV
- name: install dependencies (windows)
if: contains(matrix.os, 'windows')
run: |
choco install cmake python3
- name: MSVC (windows)
uses: ilammy/msvc-dev-cmd@d8610e2b41c6d0f0c3b4c46dad8df0fd826c68e1
if: contains(matrix.os, 'windows')
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/run-all-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ jobs:
echo "CPPFLAGS=-I$LLVM_PATH/include" >> $GITHUB_ENV
echo "CC=$LLVM_PATH/bin/clang" >> $GITHUB_ENV
echo "CXX=$LLVM_PATH/bin/clang++" >> $GITHUB_ENV
- name: install dependencies (windows)
if: contains(matrix.os, 'windows')
run: |
choco install cmake python3
- name: MSVC (windows)
uses: ilammy/msvc-dev-cmd@d8610e2b41c6d0f0c3b4c46dad8df0fd826c68e1
if: contains(matrix.os, 'windows')
Expand Down

0 comments on commit 29f26b4

Please sign in to comment.