mirror of
https://github.com/isar/libmdbx.git
synced 2024-12-30 02:44:13 +08:00
bb3d4ab9ba
Change-Id: I9d84ca299cf0b8579157f84dae42fcbb09a6f8bc
24 lines
549 B
YAML
24 lines
549 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: make all
|
|
- run: ulimit -c unlimited && make check
|
|
- run:
|
|
command: |
|
|
mkdir -p /tmp/artifacts
|
|
mv -t /tmp/artifacts $TESTLOG $TESTDB core.*
|
|
when: on_fail
|
|
- store_artifacts:
|
|
path: /tmp/artifacts
|
|
destination: test-artifacts
|