mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-30 23:39:19 +08:00
d69deec136
Change-Id: If4fd9f5e3bb6393a7fbab12b80adac16c3d6291b
36 lines
725 B
YAML
36 lines
725 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
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
|