My build of nnn with minor changes
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

38 řádky
766 B

  1. name: ci
  2. on:
  3. push:
  4. branches: [master]
  5. pull_request:
  6. branches: [master]
  7. jobs:
  8. macOS-gcc:
  9. runs-on: macOS-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: Compile with gcc
  13. env:
  14. CC: gcc
  15. run: |
  16. export CFLAGS="$CFLAGS -Werror"
  17. make clean
  18. make
  19. make clean
  20. macOS-clang:
  21. runs-on: macOS-latest
  22. steps:
  23. - uses: actions/checkout@v2
  24. - name: Compile with clang
  25. env:
  26. CC: clang
  27. run: |
  28. brew update
  29. brew install llvm
  30. export PATH="/usr/local/opt/llvm/bin:$PATH"
  31. export CFLAGS="$CFLAGS -Werror"
  32. make clean
  33. make
  34. make clean
  35. clang-tidy src/* -- -I/usr/include