[libcxx-commits] [libcxx] [llvm] [libc++] Use GitHub-provided runners for the windows CI (PR #79326)
via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jan 26 11:20:23 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Nikolas Klauser (philnik777)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/79326.diff
4 Files Affected:
- (modified) .github/workflows/libcxx-build-and-test.yaml (+41)
- (added) libcxx/trigger ()
- (modified) libcxx/utils/ci/buildkite-pipeline.yml (-50)
- (modified) runtimes/CMakeLists.txt (+3)
``````````diff
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index 5727b956dc6dd2..3682ab6f61386a 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -199,3 +199,44 @@ jobs:
**/CMakeError.log
**/CMakeOutput.log
**/crash_diagnostics/*
+ windows:
+ runs-on: windows-2022
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - { config: clang-cl-dll, mingw: false }
+ - { config: clang-cl-static, mingw: false }
+ - { config: clang-cl-no-vcruntime, mingw: false }
+ - { config: clang-cl-debug, mingw: false }
+ - { config: clang-cl-static-crt, mingw: false }
+ - { config: mingw-dll, mingw: true }
+ - { config: mingw-static, mingw: true }
+ - { config: mingw-dll-i686, mingw: true }
+ steps:
+ - uses: actions/checkout at v4
+ - name: Install dependencies
+ run: |
+ choco install -y ninja wget
+ pip install psutil
+ - name: Install a current LLVM
+ if: ${{ matrix.mingw != true }}
+ run: |
+ choco install -y llvm --version=17.0.6
+ - name: Install llvm-mingw
+ if: ${{ matrix.mingw == true }}
+ run: |
+ curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20231128/llvm-mingw-20231128-ucrt-x86_64.zip
+ powershell Expand-Archive llvm-mingw*.zip -DestinationPath .
+ del llvm-mingw*.zip
+ mv llvm-mingw* c:\llvm-mingw
+ echo "c:\llvm-mingw\bin" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
+ - name: Add Git Bash to the path
+ run: |
+ echo "c:\Program Files\Git\usr\bin" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
+ - name: Set up the MSVC dev environment
+ if: ${{ matrix.mingw != true }}
+ uses: ilammy/msvc-dev-cmd at v1
+ - name: Build and test
+ run: |
+ bash libcxx/utils/ci/run-buildbot ${{ matrix.config }}
diff --git a/libcxx/trigger b/libcxx/trigger
new file mode 100644
index 00000000000000..e69de29bb2d1d6
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index a7c44dab709391..e42262620d5fb0 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -57,56 +57,6 @@ environment_definitions:
steps:
-- group: ':windows: Windows'
- steps:
- - label: Clang-cl (DLL)
- command: bash libcxx/utils/ci/run-buildbot clang-cl-dll
- agents:
- queue: windows
- <<: *common
-
- - label: Clang-cl (Static)
- command: bash libcxx/utils/ci/run-buildbot clang-cl-static
- agents:
- queue: windows
- <<: *common
-
- - label: Clang-cl (no vcruntime exceptions)
- command: bash libcxx/utils/ci/run-buildbot clang-cl-no-vcruntime
- <<: *common
- agents:
- queue: windows
-
- - label: Clang-cl (Debug mode)
- command: bash libcxx/utils/ci/run-buildbot clang-cl-debug
- agents:
- queue: windows
- <<: *common
-
- - label: Clang-cl (Static CRT)
- command: bash libcxx/utils/ci/run-buildbot clang-cl-static-crt
- agents:
- queue: windows
- <<: *common
-
- - label: MinGW (DLL, x86_64)
- command: bash libcxx/utils/ci/run-buildbot mingw-dll
- agents:
- queue: windows
- <<: *common
-
- - label: MinGW (Static, x86_64)
- command: bash libcxx/utils/ci/run-buildbot mingw-static
- agents:
- queue: windows
- <<: *common
-
- - label: MinGW (DLL, i686)
- command: bash libcxx/utils/ci/run-buildbot mingw-dll-i686
- agents:
- queue: windows
- <<: *common
-
- group: ':mac: Apple'
steps:
- label: MacOS x86_64
diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt
index 742334328fd32a..634ffe710b06b8 100644
--- a/runtimes/CMakeLists.txt
+++ b/runtimes/CMakeLists.txt
@@ -155,6 +155,9 @@ set(LLVM_COMPILER_CHECKED ON)
include(AddLLVM)
include(HandleLLVMOptions)
+# Loot at the PATH first to avoid a version mismatch between the command-line
+# python and the CMake-found version
+set(Python3_FIND_REGISTRY LAST)
find_package(Python3 REQUIRED COMPONENTS Interpreter)
# Host triple is used by tests to check if they are running natively.
``````````
</details>
https://github.com/llvm/llvm-project/pull/79326
More information about the libcxx-commits
mailing list