Skip to content

cJSON: bump cJSON to Release 1.7.17 #28

cJSON: bump cJSON to Release 1.7.17

cJSON: bump cJSON to Release 1.7.17 #28

Workflow file for this run

name: build
on:
pull_request:
paths-ignore:
- 'Documentation/**'
push:
paths-ignore:
- 'Documentation/**'
branches:
- master
- 'releases/*'
# tags:
jobs:
build-gcc:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
submodules: true
- run: cmake -H. -Bbuild
- run: cmake --build build -j16
build-clang:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
submodules: true
- run: cmake -H. -Bbuild
- run: cmake --build build -j16