[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++
----------------
nickdesaulniers wrote:
Do you have more context about what's going wrong with the gcc builds?
https://github.com/llvm/llvm-project/pull/119104
More information about the llvm-commits
mailing list