@@ -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;