From 6210b02a0aa3e51af11bc82744c140c79f48013a Mon Sep 17 00:00:00 2001 From: jakaskerl <53253318+jakaskerl@users.noreply.github.com> Date: Mon, 5 Feb 2024 19:27:19 +0100 Subject: [PATCH] Fixing windows tests - removed already installed packages: (https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md) --- .github/workflows/test_install_requirements.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/test_install_requirements.yml b/.github/workflows/test_install_requirements.yml index 874deb3f0..4dab13002 100644 --- a/.github/workflows/test_install_requirements.yml +++ b/.github/workflows/test_install_requirements.yml @@ -91,15 +91,6 @@ - name: Download chocolatey shell: pwsh run: Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) - - name: Install cmake dependency - shell: pwsh - run: choco install cmake -y - - name: Install git dependency - shell: pwsh - run: choco install git -y - - name: Install python dependency - shell: pwsh - run: choco install python --version 3.10 --force -y - name: Install pycharm-community dependency shell: pwsh run: choco install pycharm-community -y