kmk_firmware/.circleci/config.yml

27 lines
386 B
YAML
Raw Normal View History

---
2018-09-14 17:22:51 -07:00
version: 2
jobs:
2019-07-20 16:14:58 -07:00
build:
docker:
- image: 'kmkfw/base'
environment:
KMK_TEST: 1
steps:
- checkout
- run: make test
- run: make dist
- run: make dist-deploy
2018-09-14 17:22:51 -07:00
workflows:
version: 2
build-deploy:
jobs:
2019-07-20 16:14:58 -07:00
- build:
filters:
branches:
only: /.*/
tags:
only: /.*/