x86-Darwin-llvm-from-sources #1354
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: x86-Darwin-llvm-from-sources | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Ninja | |
run: | | |
git clone https://github.com/ninja-build/ninja.git | |
pushd ninja | |
./configure.py --bootstrap | |
popd | |
- name: Add Ninja to $PATH | |
run: | | |
echo "${GITHUB_WORKSPACE}/ninja" >> $GITHUB_PATH | |
- name: Clone llvm-project | |
run: | | |
git clone --depth 1 --single-branch --branch release/18.x https://github.com/llvm/llvm-project | |
- name: Build LLVM & Clang | |
run: | | |
cd llvm-project | |
git checkout release/18.x | |
mkdir build && cd build | |
cmake -G Ninja \ | |
-DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="clang" \ | |
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" \ | |
-DLLVM_TARGETS_TO_BUILD="X86" \ | |
-DLLVM_OPTIMIZED_TABLEGEN=ON \ | |
-DDEFAULT_SYSROOT="$(xcrun --show-sdk-path)" \ | |
../llvm | |
ninja | |
- name: Install lit | |
run: | | |
brew install lit | |
- name: Build HelloWorld | |
run: | | |
cd HelloWorld | |
mkdir build && cd build | |
cmake -DCT_Clang_INSTALL_DIR="$GITHUB_WORKSPACE/llvm-project/build" ../ | |
make -j2 | |
- name: Build clang-tutor + run tests | |
run: | | |
mkdir build && cd build | |
cmake -DCT_Clang_INSTALL_DIR="$GITHUB_WORKSPACE/llvm-project/build" ../ | |
make -j2 | |
lit -va test/ |