dendrite/.circleci/config.yml
Cnly 896ddd69d6 Show tests to add to testfile in CircleCI
Signed-off-by: Alex Chen <minecnly@gmail.com>
2019-06-04 04:42:09 +08:00

36 lines
821 B
YAML

version: 2
jobs:
dendrite:
docker:
- image: matrixdotorg/sytest-dendrite
working_directory: /src
steps:
- checkout
# Set up dendrite
- run:
name: Build Dendrite
command: ./build.sh
- run:
name: Copy dummy keys to root
command: |
mv .circleci/matrix_key.pem .
mv .circleci/server.key .
- run:
name: Run sytest with whitelisted tests
command: /dendrite_sytest.sh
- run:
name: Check for new tests to be added to testfile
command: /show-expected-fail-tests.sh /logs/results.tap
- store_artifacts:
path: /logs
destination: logs
- store_test_results:
path: /logs
workflows:
version: 2
build:
jobs:
- dendrite