Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
boomanaiden154 committed Jan 9, 2025
1 parent 459d413 commit 074fa10
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/llvm-project-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ on:
type: string
# Use windows-2019 due to:
# https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
default: '["ubuntu-latest", "windows-2019", "macOS-13"]'
default: '["ubuntu-22.04", "windows-2019", "macOS-13"]'

python_version:
required: false
Expand Down Expand Up @@ -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@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
Expand All @@ -80,6 +75,15 @@ jobs:
uses: actions/setup-python@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@main
with:
arch: amd64
- name: Install Ninja
if: runner.os != 'Linux'
uses: llvm/actions/install-ninja@main
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 074fa10

Please sign in to comment.