[llvm] [libc] add multi-platform pre-commit github actions (PR #119104)
Nick Desaulniers via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 9 10:41:14 PST 2024
================
@@ -0,0 +1,76 @@
+# This workflow is for pre-commit testing of the LLVM-libc project.
+name: LLVM-libc Pre-commit Fullbuild Tests
+
+on:
+ pull_request:
+ branches: [ "main" ]
+ paths:
+ - 'libc/**'
+ - '.github/workflows/libc-fullbuild-tests.yml'
+
+jobs:
+ build:
+ runs-on: ubuntu-24.04
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - 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 at v4
+
+ - name: Setup ccache
+ uses: hendrikmuhs/ccache-action at v1.2
+ with:
+ max-size: 1G
+ key: libc_fullbuild_${{ matrix.c_compiler }}
+ variant: sccache
+
+ - name: Prepare dependencies (Ubuntu)
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y libmpfr-dev libgmp-dev libmpc-dev ninja-build linux-headers-generic linux-libc-dev
+ sudo ln -sf /usr/include/$(uname -p)-linux-gnu/asm /usr/include/asm
----------------
nickdesaulniers wrote:
Why do we need the symlink?
https://github.com/llvm/llvm-project/pull/119104
More information about the llvm-commits
mailing list