summaryrefslogtreecommitdiff
path: root/libs/libmdbx/src/.circleci/config.yml
blob: 91e11a4bfefc45c3a15456c09040f48b65c32337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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