mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-30 23:39:19 +08:00
52dbaf20ae
Change-Id: I2bfe1227809c3de6ad0f95f11c949fe461933102
38 lines
766 B
YAML
38 lines
766 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore:
|
|
- coverity_scan
|
|
paths-ignore:
|
|
- '.circleci/**'
|
|
- '.github/actions/spelling/**'
|
|
- 'docs/**'
|
|
- 'packages**'
|
|
- .cirrus.yml
|
|
- .clang-format
|
|
- .gitignore
|
|
- .travis.yml
|
|
- AUTHORS
|
|
- COPYRIGHT
|
|
- ChangeLog.md
|
|
- LICENSE
|
|
- README.md
|
|
- appveyor.yml
|
|
|
|
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
|
|
run: git fetch --unshallow --tags --prune --force
|
|
- name: make check
|
|
run: make --keep-going all && MALLOC_CHECK_=7 MALLOC_PERTURB_=42 make --keep-going check
|
|
shell: bash
|