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