-
Notifications
You must be signed in to change notification settings - Fork 146
129 lines (111 loc) · 4.52 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Build and Test
on:
workflow_dispatch:
pull_request:
push:
branches:
- "master"
permissions:
contents: read
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.ref_protected && github.run_id || github.event.pull_request.number || github.ref }}'
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup LLVM (Linux)
if: ${{ runner.os == 'Linux' }}
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 19 all
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 160
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-19 160
sudo update-alternatives --install /usr/bin/lli lli /usr/bin/lli-19 160
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-19 160
- name: Setup LLVM and GCC (MacOS)
if: ${{ runner.os == 'macOS' }}
run: |
brew install llvm@19 gcc@14
echo "$(brew --prefix llvm@19)/bin" >> $GITHUB_PATH
echo "CC=$(brew --prefix llvm@19)/bin/clang" >> $GITHUB_ENV
echo "CXX=$(brew --prefix llvm@19)/bin/clang++" >> $GITHUB_ENV
cd /usr/local/bin
ln -s `which gcc-14` gcc
- name: Update Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install PyTest
run: |
python -m pip install --upgrade pip
pip install pytest pytest-xdist
- name: Check formatting
if: ${{ runner.os == 'Linux' }}
run: find . -iname '*.h' -o -iname '*.cpp' | xargs clang-format -Werror --dry-run --style=LLVM --verbose
- name: Build
run: |
mkdir build
cmake -S . -B build -DLLVM_INCLUDE_TESTS=On -DLLVM_DIR=/usr/lib/llvm-19/cmake
cmake --build build
- name: Test
run: |
gcc --version
pytest -n 16
# The llvm-dev package doesn't exist for Windows, so we need to build LLVM ourselves.
build-windows:
runs-on: windows-latest
env:
SCCACHE_GHA_ENABLED: "true"
steps:
- name: Checkout LLVM
id: checkout-llvm
uses: actions/checkout@master
with:
repository: llvm/llvm-project
ref: llvmorg-19.1.1
- name: Checkout
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}/llvm/projects/llvm-cbe
- name: Update Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install PyTest
run: |
python -m pip install --upgrade pip
pip install pytest pytest-xdist
- name: Initialize LLVM build cache
uses: mozilla-actions/[email protected]
- name: Build
shell: pwsh
run: |
$vsWhere = Join-Path ${env:ProgramFiles(x86)} 'Microsoft Visual Studio\Installer\vswhere.exe'
$visualStudioInstallationPath = & $vsWhere -latest -property installationPath
Import-Module (Join-Path $visualStudioInstallationPath 'Common7\Tools\Microsoft.VisualStudio.DevShell.dll')
Enter-VsDevShell -VsInstallPath $visualStudioInstallationPath -DevCmdArguments '-arch=x64 -host_arch=x64'
cd ${{ github.workspace }}
if (!(Test-Path '${{ github.workspace }}\build\')) { mkdir '${{ github.workspace }}\build' }
cmake -S llvm -B build -G Ninja -DLLVM_INCLUDE_TESTS=On -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache
cmake --build build
- name: Test
shell: pwsh
run: |
$vsWhere = Join-Path ${env:ProgramFiles(x86)} 'Microsoft Visual Studio\Installer\vswhere.exe'
$visualStudioInstallationPath = & $vsWhere -latest -property installationPath
Import-Module (Join-Path $visualStudioInstallationPath 'Common7\Tools\Microsoft.VisualStudio.DevShell.dll')
Enter-VsDevShell -VsInstallPath $visualStudioInstallationPath -DevCmdArguments '-arch=x64 -host_arch=x64'
cd (Join-Path '${{ github.workspace }}' 'llvm\projects\llvm-cbe')
$env:PATH=$env:Path + ";${{ github.workspace }}\build\bin"
$env:LLVMToolDir="${{ github.workspace }}\build\bin"
pytest -n 16