nnn/.github/workflows/ci.yml

48 lines
1009 B
YAML
Raw Normal View History

2020-11-21 20:34:35 +00:00
name: ci
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
macOS-gcc:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Compile with gcc
env:
CC: gcc
run: |
export CFLAGS="$CFLAGS -Werror"
make clean
make
make clean
macOS-clang:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Compile with clang
env:
CC: clang
run: |
2022-11-24 05:28:21 +00:00
rm '/usr/local/bin/2to3-3.11'
2020-11-21 20:34:35 +00:00
brew update
brew install llvm
export PATH="/usr/local/opt/llvm/bin:$PATH"
export CFLAGS="$CFLAGS -Werror"
make clean
make
make clean
clang-tidy src/* -- -I/usr/include
2022-05-30 17:45:28 +00:00
ubuntu-patches:
runs-on: ubuntu-latest
2022-05-29 23:01:46 +00:00
steps:
- uses: actions/checkout@v2
- name: Compile patches with gcc
env:
CC: gcc
run: |
make checkpatches