2021-01-26 02:05:17 +03:00
|
|
|
name: CI
|
|
|
|
|
2021-04-18 11:31:47 +03:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
2021-04-26 23:13:57 +03:00
|
|
|
branches-ignore:
|
|
|
|
- coverity_scan
|
2021-04-18 11:31:47 +03: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 02:05:17 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
#, windows-latest
|
2021-09-21 15:06:10 +03:00
|
|
|
os: [ubuntu-latest, macos-latest, ubuntu-18.04]
|
2021-01-26 02:05:17 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: fetch tags
|
2021-02-04 18:53:19 +03:00
|
|
|
run: git fetch --unshallow --tags --prune --force
|
2021-01-26 02:05:17 +03:00
|
|
|
- name: make check
|
2021-10-01 14:18:05 +03:00
|
|
|
run: make MDBX_BUILD_OPTIONS="-DNDEBUG=1 -DMDBX_FORCE_ASSERTIONS=1" --keep-going all && MALLOC_CHECK_=7 MALLOC_PERTURB_=42 make MDBX_BUILD_OPTIONS="-DNDEBUG=1 -DMDBX_FORCE_ASSERTIONS=1" --keep-going check
|
2021-01-26 02:05:17 +03:00
|
|
|
shell: bash
|
2022-04-06 12:44:30 +03:00
|
|
|
- name: if_failure
|
|
|
|
if: failure()
|
|
|
|
run: for F in *.err; do echo --- $F; cat $F; done
|