[llvm] [libcxx] [ci] Don't install wget in the Windows jobs (PR #95215)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 12 02:43:32 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Martin Storsjö (mstorsjo)
<details>
<summary>Changes</summary>
Nothing uses wget - only curl is used, and that's available out of the box.
---
Full diff: https://github.com/llvm/llvm-project/pull/95215.diff
1 Files Affected:
- (modified) .github/workflows/libcxx-build-and-test.yaml (+1-1)
``````````diff
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 }}
``````````
</details>
https://github.com/llvm/llvm-project/pull/95215
More information about the llvm-commits
mailing list