From: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> Since commit: b7d8dd8bbf5b ("arch/x86/syscall: Add x86 32-bit native syscall support") liburing supports nolibc build for x86 32-bit. Run the nolibc build for this arch on the GitHub bot too. Currently, liburing nolibc is only available for: - x86-64. - x86 (32-bit). Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30a2fc7..39f4314 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,7 +72,7 @@ jobs: - name: Build nolibc run: | - if [[ "${{matrix.arch}}" == "x86_64" ]]; then \ + if [[ "${{matrix.arch}}" == "x86_64" || "${{matrix.arch}}" == "i686" ]]; then \ make clean; \ ./configure --cc=${{matrix.cc}} --cxx=${{matrix.cxx}} --nolibc; \ make -j$(nproc) V=1 CPPFLAGS="-Werror" CFLAGS="$FLAGS" CXXFLAGS="$FLAGS"; \ -- Ammar Faizi