diff mbox series

[RFC,liburing,v1,1/2] github: Remove nolibc build on the GitHub CI bot

Message ID 20230106155202.558533-2-ammar.faizi@intel.com (mailing list archive)
State New
Headers show
Series Always enable CONFIG_NOLIBC if supported and deprecate --nolibc option | expand

Commit Message

Ammar Faizi Jan. 6, 2023, 3:52 p.m. UTC
From: Ammar Faizi <ammarfaizi2@gnuweeb.org>

This is a preparation patch to deprecate `--nolibc` configure option.

Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
---
 .github/workflows/build.yml | 10 ----------
 1 file changed, 10 deletions(-)
diff mbox series

Patch

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c2aa3e6..f18f069 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -117,16 +117,6 @@  jobs:
         ./configure --cc=${{matrix.cc}} --cxx=${{matrix.cxx}};
         make -j$(nproc) V=1 CPPFLAGS="-Werror" CFLAGS="$FLAGS" CXXFLAGS="$FLAGS";
 
-    - name: Build nolibc
-      run: |
-        if [[ "${{matrix.arch}}" == "x86_64" || "${{matrix.arch}}" == "i686" || "${{matrix.arch}}" == "aarch64" ]]; then \
-            make clean; \
-            ./configure --cc=${{matrix.cc}} --cxx=${{matrix.cxx}} --nolibc; \
-            make -j$(nproc) V=1 CPPFLAGS="-Werror" CFLAGS="$FLAGS" CXXFLAGS="$FLAGS"; \
-        else \
-            echo "Skipping nolibc build, this arch doesn't support building liburing without libc"; \
-        fi;
-
     - name: Test install command
       run: |
         sudo make install;