mirror of
https://github.com/jarun/nnn.git
synced 2025-01-15 21:36:42 +00:00
Merge pull request #1375 from luukvbaal/master
Add patch conflict workflow
This commit is contained in:
commit
f8b8e77be9
31
.github/workflows/ci.yml
vendored
31
.github/workflows/ci.yml
vendored
|
@ -35,3 +35,34 @@ jobs:
|
||||||
make
|
make
|
||||||
make clean
|
make clean
|
||||||
clang-tidy src/* -- -I/usr/include
|
clang-tidy src/* -- -I/usr/include
|
||||||
|
macOS-patches:
|
||||||
|
runs-on: macOS-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Compile patches with gcc
|
||||||
|
env:
|
||||||
|
CC: gcc
|
||||||
|
run: |
|
||||||
|
export CFLAGS="$CFLAGS -Werror"
|
||||||
|
make clean
|
||||||
|
echo "########## O_NAMEFIRST=1 ##########"
|
||||||
|
make O_NAMEFIRST=1
|
||||||
|
make clean
|
||||||
|
echo "########## O_GITSTATUS=1 ##########"
|
||||||
|
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
|
||||||
|
|
Loading…
Reference in a new issue