[llvm] [libcxx] [ci] Don't install wget in the Windows jobs (PR #95215)

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 12 02:43:00 PDT 2024


https://github.com/mstorsjo created https://github.com/llvm/llvm-project/pull/95215

Nothing uses wget - only curl is used, and that's available out of the box.

>From 9a75c4aa5e7918d713883b63d5b826541efa1642 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin at martin.st>
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 at 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 }}



More information about the llvm-commits mailing list