[llvm] Testing (PR #122221)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 8 22:06:31 PST 2025
https://github.com/boomanaiden154 updated https://github.com/llvm/llvm-project/pull/122221
>From fc7c3128496705d3903dd748fcbd1d40dc94f853 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Thu, 9 Jan 2025 05:54:10 +0000
Subject: [PATCH] Testing
---
.github/workflows/llvm-project-tests.yml | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/llvm-project-tests.yml b/.github/workflows/llvm-project-tests.yml
index 95a3890c0d2dc7..f32224ec8b7729 100644
--- a/.github/workflows/llvm-project-tests.yml
+++ b/.github/workflows/llvm-project-tests.yml
@@ -67,11 +67,6 @@ jobs:
matrix:
os: ${{ fromJSON(inputs.os_list) }}
steps:
- - name: Setup Windows
- if: startsWith(matrix.os, 'windows')
- uses: llvm/actions/setup-windows at main
- with:
- arch: amd64
# On Windows, starting with win19/20220814.1, cmake choose the 32-bit
# python3.10.6 libraries instead of the 64-bit libraries when building
# lldb. Using this setup-python action to make 3.10 the default
@@ -80,6 +75,15 @@ jobs:
uses: actions/setup-python at v5
with:
python-version: ${{ inputs.python_version }}
+ - name: Test python
+ run: |
+ stat /__t/Python/3.11.11/x64/bin/python3
+ /__t/Python/3.11.11/x64/bin/python3 --version
+ - name: Setup Windows
+ if: startsWith(matrix.os, 'windows')
+ uses: llvm/actions/setup-windows at main
+ with:
+ arch: amd64
- name: Install Ninja
if: runner.os != 'Linux'
uses: llvm/actions/install-ninja at main
@@ -113,7 +117,8 @@ jobs:
run: |
if [ "${{ runner.os }}" == "Linux" ]; then
builddir="/mnt/build/"
- mkdir -p $builddir
+ sudo mkdir -p $builddir
+ sudo chown gha $builddir
extra_cmake_args="-DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang"
else
builddir="$(pwd)"/build
More information about the llvm-commits
mailing list