mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-29 16:53:30 +01:00
Add GitHub Actions configuration (#16)
This commit is contained in:
parent
e66d045060
commit
722ddf7235
30
.github/workflows/linux.yml
vendored
Normal file
30
.github/workflows/linux.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: Linux
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
release:
|
||||
types: published
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: [ubuntu-latest]
|
||||
container:
|
||||
image: fedora:32
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: dnf install -yq cmake ninja-build clang-tools-extra python3-PyYAML
|
||||
|
||||
- name: Build with GCC
|
||||
run: |
|
||||
cmake -Bbuild -GNinja
|
||||
cmake --build build
|
||||
|
||||
- name: Build with Clang
|
||||
run: |
|
||||
CXX=clang++ cmake -Bbuild-clang -GNinja -DCMAKE_EXPORT_COMPILE_COMMANDS=1
|
||||
cmake --build build-clang
|
||||
|
||||
- name: Lint with clang-tidy
|
||||
run: python3 /usr/share/clang/run-clang-tidy.py -header-filter=poly2tri -p=build-clang
|
Loading…
Reference in New Issue
Block a user