[libcxx] [llvm] [libc++] Use GitHub-provided runners for the windows CI (PR #79326)
Nikolas Klauser via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 25 06:13:26 PST 2024
https://github.com/philnik777 updated https://github.com/llvm/llvm-project/pull/79326
>From 2f1af5675c5487c421c805de976e41592b81eb05 Mon Sep 17 00:00:00 2001
From: Nikolas Klauser <nikolasklauser at berlin.de>
Date: Wed, 24 Jan 2024 17:42:53 +0100
Subject: [PATCH] [libc++] Use GitHub-provided runners for the windows CI
---
.github/workflows/libcxx-build-and-test.yaml | 18 ++++++++++++++++++
libcxx/trigger | 0
2 files changed, 18 insertions(+)
create mode 100644 libcxx/trigger
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index 5727b956dc6dd2..36f175fb59fed3 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -199,3 +199,21 @@ jobs:
**/CMakeError.log
**/CMakeOutput.log
**/crash_diagnostics/*
+ windows:
+ runs-on: windows-2019
+ steps:
+ - uses: actions/checkout at v4
+ - name: Install dependencies
+ run: |
+ choco install -y ninja wget
+ wget https://github.com/mstorsjo/llvm-mingw/releases/download/20231128/llvm-mingw-20231128-ucrt-x86_64.zip -O llvm-mingw.zip
+ powershell Expand-Archive llvm-mingw.zip -DestinationPath .
+ del llvm-mingw.zip
+ ren llvm-mingw-20231128-ucrt-x86_64 llvm-mingw
+ setx path "%path%;%cd%\llvm-mingw\bin"
+ cmd /k echo %path%
+ - name: clang-cl (DLL)
+ run: |
+ cmd /k "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat"
+ cmd /k echo %path%
+ bash libcxx/utils/ci/run-buildbot clang-cl-dll
diff --git a/libcxx/trigger b/libcxx/trigger
new file mode 100644
index 00000000000000..e69de29bb2d1d6
More information about the llvm-commits
mailing list