From: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> This is a preparation patch to deprecate `--nolibc` configure option. Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- .github/workflows/build.yml | 10 ---------- 1 file changed, 10 deletions(-) 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; -- Ammar Faizi