From f57c21320760013bf0491084a04af55ee06b5243 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Sat, 29 Jun 2024 20:42:19 +0200 Subject: [PATCH] Use the installed version of Python --- .github/workflows/ci.yml | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e19dbe..c5d508f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -138,12 +138,29 @@ jobs: python3.8 -m pip install --upgrade pip python3.8 -m pip install cryptography + - name: Find the latest version of Python (Windows) + if: runner.os == 'Windows' + run: | + $pythonVersions = Get-ChildItem -Path "C:/hostedtoolcache/windows/Python/" -Directory | Where-Object { $_.Name -match '\d+\.\d+\.\d+' } | Sort-Object { [Version]($_.Name) } -Descending + if ($pythonVersions.Count -gt 0) { + $latestPythonVersion = $pythonVersions[0].Name + $pythonPath = "C:/hostedtoolcache/windows/Python/$latestPythonVersion/x64" + Write-Output "Latest Python version found: $latestPythonVersion" + Write-Output "Python directory path: $pythonPath" + $env:Path = "$pythonPath;" + $env:Path + Write-Output "Updated PATH environment variable:" + Write-Output $env:Path + } else { + Write-Error "No Python versions found in C:/hostedtoolcache/windows/Python/" + exit 1 + } + - name: Install python3 cryptography module (Windows) if: runner.os == 'Windows' run: | - C:/hostedtoolcache/windows/Python/3.12.3/x64/python3.exe -m ensurepip - C:/hostedtoolcache/windows/Python/3.12.3/x64/python.exe -m pip install --upgrade pip - C:/hostedtoolcache/windows/Python/3.12.3/x64/python.exe -m pip install cryptography + python.exe -m ensurepip + python.exe -m pip install --upgrade pip + python.exe -m pip install cryptography - name: Configure CMake run: cmake