mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-02 00:14:14 +08:00
23 lines
590 B
YAML
23 lines
590 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
branches:
|
|
ignore:
|
|
- gh-pages
|
|
docker:
|
|
- image: circleci/buildpack-deps:20.04
|
|
environment:
|
|
- TESTDB: /tmp/test.db
|
|
- TESTLOG: /tmp/test.log
|
|
steps:
|
|
- checkout
|
|
- run: ulimit -c unlimited && MDBX_BUILD_OPTIONS="-DNDEBUG=1 -DMDBX_FORCE_ASSERTIONS=1" make test-ubsan
|
|
- run:
|
|
command: |
|
|
mkdir -p /tmp/artifacts
|
|
mv -t /tmp/artifacts $TESTLOG $TESTDB core.*
|
|
when: on_fail
|
|
- store_artifacts:
|
|
path: /tmp/artifacts
|
|
destination: test-artifacts
|