Merge pull request #1376 from N-R-K/patches_ci

Improve patches ci
This commit is contained in:
Arun 2022-05-30 22:11:43 +05:30 committed by GitHub
commit 33ec6dece4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,26 +43,12 @@ jobs:
env: env:
CC: gcc CC: gcc
run: | run: |
export CFLAGS="$CFLAGS -Werror" patches=("O_GITSTATUS" "O_NAMEFIRST" "O_RESTOREPREVIEW")
make clean z=$(( 1 << ${#patches[@]} ))
echo "########## O_NAMEFIRST=1 ##########" for ((n=1; n < z; ++n)); do
make O_NAMEFIRST=1 for ((i=0; i < ${#patches[@]}; ++i)); do
make clean printf "%s=%d " "${patches[$i]}" "$(( (n & (1 << i)) != 0 ))"
echo "########## O_GITSTATUS=1 ##########" done | tee "tmp" ; echo
make O_GITSTATUS=1
make clean
echo "########## O_RESTOREPREVIEW=1 ##########"
make O_RESTOREPREVIEW=1
make clean
echo "########## O_NAMEFIRST=1 O_GITSTATUS=1 ##########"
make O_NAMEFIRST=1 O_GITSTATUS=1
make clean
echo "########## O_NAMEFIRST=1 O_RESTOREPREVIEW=1 ##########"
make O_NAMEFIRST=1 O_RESTOREPREVIEW=1
make clean
echo "########## O_GITSTATUS=1 O_RESTOREPREVIEW=1 ##########"
make O_GITSTATUS=1 O_RESTOREPREVIEW=1
make clean
echo "########## O_NAMEFIRST=1 O_GITSTATUS=1 O_RESTOREPREVIEW=1 ##########"
make O_NAMEFIRST=1 O_GITSTATUS=1 O_RESTOREPREVIEW=1
make clean make clean
xargs make <"tmp"
done