From 9a75c4aa5e7918d713883b63d5b826541efa1642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 12 Jun 2024 12:41:59 +0300 Subject: [PATCH] [libcxx] [ci] Don't install wget in the Windows jobs Nothing uses wget - only curl is used, and that's available out of the box. --- .github/workflows/libcxx-build-and-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml index 44a3d79c72c0a..9a3ad9357c733 100644 --- a/.github/workflows/libcxx-build-and-test.yaml +++ b/.github/workflows/libcxx-build-and-test.yaml @@ -209,7 +209,7 @@ jobs: - uses: actions/checkout@v4 - name: Install dependencies run: | - choco install -y ninja wget + choco install -y ninja pip install psutil - name: Install a current LLVM if: ${{ matrix.mingw != true }}