[llvm] [libc] add multi-platform pre-commit github actions (PR #119104)
Schrodinger ZHU Yifan via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 9 11:54:25 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++
----------------
SchrodingerZhu wrote:
Please see https://github.com/llvm/llvm-project/actions/runs/12217700280/job/34082285018?pr=119104 and https://github.com/llvm/llvm-project/actions/runs/12218362957/job/34083763790?pr=119104
https://github.com/llvm/llvm-project/pull/119104
More information about the llvm-commits
mailing list