Initial CircleCi configuration (#9)

Initial CircleCi configuration
This commit is contained in:
Valeri Filipov 2019-03-22 08:36:45 +02:00 committed by GitHub
parent 05f68fab29
commit 7cde3fd2f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

34
.circleci/config.yml Normal file
View File

@ -0,0 +1,34 @@
version: 2.1
executors:
aebuilder:
docker:
- image: aeternity/builder
user: builder
working_directory: ~/src
jobs:
build:
executor: aebuilder
steps:
- checkout
- restore_cache:
keys:
- dialyzer-cache-v1-{{ .Branch }}-{{ .Revision }}
- dialyzer-cache-v1-{{ .Branch }}-
- dialyzer-cache-v1-
- run:
name: Static Analysis
command: make dialyzer
- run:
name: Eunit
command: make eunit
- run:
name: Common Tests
command: make ct
- save_cache:
key: dialyzer-cache-v1-{{ .Branch }}-{{ .Revision }}
paths:
- _build/default/rebar3_20.3.8_plt
- store_artifacts:
path: _build/test/logs