aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAmmar Faizi <ammar.faizi@students.amikom.ac.id>2021-10-11 07:40:15 +0700
committerAmmar Faizi <ammarfaizi2@gmail.com>2021-10-11 08:41:58 +0700
commite4b1317c35684cd14cc21b5176ec39d56cbcc329 (patch)
treee59eb48c539d432f6a2c54d92d138f57e9786e5e /.github
parentc7d03dc2c123bc2ee85582d8f922acd268d6ac78 (diff)
downloadliburing-e4b1317c35684cd14cc21b5176ec39d56cbcc329.tar.gz
.github/workflows/build.yml: Add nolibc build x86-64 for CI
Fixes: https://github.com/axboe/liburing/issues/443 Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a8c0503..b5157cb 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -33,10 +33,12 @@ jobs:
- name: Build
run: |
./configure --cc=${{matrix.cc}} --cxx=${{matrix.cxx}};
- make V=1 -j$(nproc) \
- CPPFLAGS="-Werror" \
- CFLAGS="$FLAGS" \
- CXXFLAGS="$FLAGS";
+ make -j$(nproc) V=1 CPPFLAGS="-Werror" CFLAGS="$FLAGS" CXXFLAGS="$FLAGS";
+
+ - name: Build nolibc x86-64
+ run: |
+ ./configure --cc=${{matrix.cc}} --cxx=${{matrix.cxx}} --nolibc;
+ make -j$(nproc) V=1 CPPFLAGS="-Werror" CFLAGS="$FLAGS" CXXFLAGS="$FLAGS";
- name: Build (32 bit)
run: |