Build #7
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
on: | |
workflow_dispatch: | |
inputs: | |
clang_bootstrap_major_version: | |
description: "Major version of clang we'll use to build the clang toolchain." | |
type: number | |
required: true | |
clang_version: | |
description: "Version of clang we'll build." | |
type: string | |
required: true | |
runner: | |
description: "Type of runner to use/architecture to build for." | |
type: choice | |
options: | |
- toolchains-ubuntu-22.04-x86 | |
- toolchains-ubuntu-22.04-arm | |
cpu_target: | |
description: "Type of CPU to optimize for." | |
type: string | |
required: false | |
name: Build | |
jobs: | |
build: | |
name: build clang ${{ inputs.runner }} | |
runs-on: ${{ inputs.runner }} | |
steps: | |
- name: Install required tools | |
run: sudo apt-get install -y zstd cmake | |
- name: Clone MaterializeInc/toolchains repo | |
uses: actions/checkout@v4 | |
- name: Install bootstrap clang | |
run: sudo clang/llvm.sh ${{ inputs.clang_bootstrap_major_version }} | |
- name: Clone llvm-project at Version | |
uses: actions/checkout@v4 | |
with: | |
repository: llvm/llvm-project | |
ref: 'llvmorg-${{ inputs.clang_version }}' | |
path: llvm-project | |
- name: Get args | |
run: | | |
TARGET_CPU_ARG="" | |
if [ -n ${{ inputs.target_cpu }} ]; then | |
TARGET_CPU_ARG="-mcpu=${{ inputs.target_cpu }}" | |
fi | |
echo TARGET_CPU_ARG=$TARGET_CPU_ARG | |
case ${{ inputs.runner }} in | |
toolchains-ubuntu-22.04-x86) | |
CLANG_ARCH=x86-64 | |
;; | |
toolchains-ubuntu-22.04-arm) | |
CLANG_ARCH=aarch64 | |
;; | |
*) | |
echo "Programming error, unknown runner" | |
exit 1 | |
;; | |
esac | |
echo CLANG_ARCH=$CLANG_ARCH | |
C_BINARY="clang-${{ inputs.clang_bootstrap_major_version }}" | |
echo C_BINARY=$C_BINARY | |
CXX_BINARY="clang++-${{ inputs.clang_bootstrap_major_version }}" | |
echo CXX_BINARY=$CXX_BINARY | |
LLD_BINARY="lld-${{ inputs.clang_bootstrap_major_version }}" | |
echo LLD_BINARY=$LLD_BINARY | |
- name: cmake configure | |
run: | | |
libs_dir="$CLANG_ARCH"-linux-gnu | |
echo $libs_dir | |
cd llvm-project | |
cmake -S llvm -B build \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DCMAKE_C_FLAGS="$TARGET_CPU_ARG -flto=thin -pthread" \ | |
-DCMAKE_CXX_FLAGS="$TARGET_CPU_ARG -flto=thin -pthread" \ | |
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION="on" \ | |
-DLLVM_ENABLE_PROJECTS="clang;lld" \ | |
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind;compiler-rt" \ | |
-DLLVM_DISTRIBUTION_COMPONENTS="clang-resource-headers" \ | |
-DCMAKE_C_COMPILER=$C_BINARY \ | |
-DCMAKE_CXX_COMPILER=$CXX_BINARY \ | |
-DLLVM_USE_LINKER=$LLD_BINARY \ | |
-DLLVM_ENABLE_LIBCXX=ON \ | |
-DLLVM_STATIC_LINK_CXX_STDLIB=ON \ | |
-DLLVM_ENABLE_LTO=Thin \ | |
-DLLVM_ENABLE_PIC=ON \ | |
-DLLVM_ENABLE_THREADS=ON \ | |
-DBUILD_SHARED_LIBS=OFF \ | |
-DLLVM_INCLUDE_UTILS=OFF \ | |
-DLLVM_INCLUDE_TESTS=OFF \ | |
-DLLVM_INCLUDE_EXAMPLES=OFF \ | |
-DLLVM_INCLUDE_BENCHMARKS=OFF \ | |
-DLLVM_INCLUDE_DOCS=OFF \ | |
-DTerminfo_LIBRARIES=/usr/lib/$libs_dir/libtinfo.a \ | |
-DZLIB_LIBRARY=/usr/lib/$libs_dir/libz.a |