mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 16:07:09 +00:00

This patch has pins actions in the libc Github workflows. Hash pinning is a best practice as it ensures we are getting an exact action version, which can help with reproducibility/reliability. It additionally alleviates security concerns as an attacker can modify release assets, potentially giving them access to tokens in privileged workflows.
98 lines
3.6 KiB
YAML
98 lines
3.6 KiB
YAML
# This workflow is for pre-commit testing of the LLVM-libc project.
|
|
name: LLVM-libc Pre-commit Fullbuild Tests
|
|
permissions:
|
|
contents: read
|
|
on:
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- 'libc/**'
|
|
- '.github/workflows/libc-fullbuild-tests.yml'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
build_type: [Debug, Release, MinSizeRel]
|
|
include:
|
|
- os: ubuntu-24.04
|
|
ccache-variant: sccache
|
|
c_compiler: clang
|
|
cpp_compiler: clang++
|
|
# TODO: remove ccache logic when https://github.com/hendrikmuhs/ccache-action/issues/279 is resolved.
|
|
- os: ubuntu-24.04-arm
|
|
ccache-variant: ccache
|
|
c_compiler: clang
|
|
cpp_compiler: clang++
|
|
# TODO: add back gcc build when it is fixed
|
|
# - c_compiler: gcc
|
|
# cpp_compiler: g++
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
# Libc's build is relatively small comparing with other components of LLVM.
|
|
# A fresh fullbuild takes about 190MiB of uncompressed disk space, which can
|
|
# be compressed into ~40MiB. Limiting the cache size to 1G should be enough.
|
|
# Prefer sccache as it is more modern.
|
|
# Do not use direct GHAC access even though it is supported by sccache. GHAC rejects
|
|
# frequent small object writes.
|
|
- name: Setup ccache
|
|
uses: hendrikmuhs/ccache-action@a1209f81afb8c005c13b4296c32e363431bffea5 # v1.2.17
|
|
with:
|
|
max-size: 1G
|
|
key: libc_fullbuild_${{ matrix.c_compiler }}
|
|
variant: ${{ matrix.ccache-variant }}
|
|
|
|
# Notice:
|
|
# - MPFR is required by some of the mathlib tests.
|
|
# - Debian has a multilib setup, so we need to symlink the asm directory.
|
|
# For more information, see https://wiki.debian.org/Multiarch/LibraryPathOverview
|
|
- name: Prepare dependencies (Ubuntu)
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libmpfr-dev libgmp-dev libmpc-dev ninja-build linux-libc-dev
|
|
sudo ln -sf /usr/include/$(uname -p)-linux-gnu/asm /usr/include/asm
|
|
|
|
- name: Set reusable strings
|
|
id: strings
|
|
shell: bash
|
|
run: |
|
|
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
|
|
echo "build-install-dir=${{ github.workspace }}/install" >> "$GITHUB_OUTPUT"
|
|
|
|
# Configure libc fullbuild with scudo.
|
|
# Use MinSizeRel to reduce the size of the build.
|
|
- name: Configure CMake
|
|
run: >
|
|
cmake -B ${{ steps.strings.outputs.build-output-dir }}
|
|
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
|
|
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
|
|
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
|
|
-DCMAKE_C_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
|
|
-DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.build-install-dir }}
|
|
-DLLVM_ENABLE_RUNTIMES="libc;compiler-rt"
|
|
-DLLVM_LIBC_FULL_BUILD=ON
|
|
-DLLVM_LIBC_INCLUDE_SCUDO=ON
|
|
-DCOMPILER_RT_BUILD_SCUDO_STANDALONE_WITH_LLVM_LIBC=ON
|
|
-DCOMPILER_RT_BUILD_GWP_ASAN=OFF
|
|
-DCOMPILER_RT_SCUDO_STANDALONE_BUILD_SHARED=OFF
|
|
-G Ninja
|
|
-S ${{ github.workspace }}/runtimes
|
|
|
|
- name: Build
|
|
run: >
|
|
cmake
|
|
--build ${{ steps.strings.outputs.build-output-dir }}
|
|
--parallel
|
|
--target install
|
|
|
|
- name: Test
|
|
run: >
|
|
cmake
|
|
--build ${{ steps.strings.outputs.build-output-dir }}
|
|
--parallel
|
|
--target check-libc
|