From 214b3eb29aa9cce8a55a247b4bd816cbd19bfe6b Mon Sep 17 00:00:00 2001 From: Christian Moritz Date: Thu, 5 Dec 2019 00:16:39 +0100 Subject: fix depot_tools on macOS Catalina by upgrading it to 23247b9 (#3441) Fixes: #3440 Fixes: #3153 --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbdf02d57..71a631153 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,6 +59,14 @@ jobs: python-version: "2.7.16" architecture: x64 + - name: Remove unused versions of Python + if: startsWith(matrix.os, 'windows') + run: |- + $env:PATH -split ";" | + Where-Object { Test-Path "$_\python.exe" } | + Select-Object -Skip 1 | + ForEach-Object { Move-Item "$_" "$_.disabled" } + - name: Environment (common) run: | echo ::set-env name=GH_ACTIONS::1 -- cgit v1.2.3