mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-30 23:39:19 +08:00
40d5db2418
Change-Id: Id86af9e033d64a4dc2043db33cd8e7ae173feb22
21 lines
503 B
YAML
21 lines
503 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/buildpack-deps:artful
|
|
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
|