2021-01-26 07:05:17 +08:00
|
|
|
name: CI
|
|
|
|
|
2021-04-18 16:31:47 +08:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
2021-04-27 04:13:57 +08:00
|
|
|
branches-ignore:
|
|
|
|
- coverity_scan
|
2021-04-18 16:31:47 +08:00
|
|
|
paths-ignore:
|
|
|
|
- '.circleci/**'
|
|
|
|
- '.github/actions/spelling/**'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'packages**'
|
|
|
|
- .cirrus.yml
|
|
|
|
- .clang-format
|
|
|
|
- .gitignore
|
|
|
|
- .travis.yml
|
|
|
|
- AUTHORS
|
|
|
|
- COPYRIGHT
|
|
|
|
- ChangeLog.md
|
|
|
|
- LICENSE
|
|
|
|
- README.md
|
|
|
|
- appveyor.yml
|
2021-01-26 07:05:17 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
#, windows-latest
|
|
|
|
os: [ubuntu-latest, macos-latest, ubuntu-16.04]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: fetch tags
|
2021-02-04 23:53:19 +08:00
|
|
|
run: git fetch --unshallow --tags --prune --force
|
2021-01-26 07:05:17 +08:00
|
|
|
- name: make check
|
|
|
|
run: make --keep-going all && MALLOC_CHECK_=7 MALLOC_PERTURB_=42 make --keep-going check
|
|
|
|
shell: bash
|