dotfiles/.circleci/config.yml
2018-06-03 11:43:03 +01:00

29 lines
440 B
YAML

version: 2
jobs:
fedora:
machine: true
environment:
DETECTED_OS: fedora:27
DOCKER_IMAGE: cyplo/fedora27_base
steps:
- checkout
- run: ./test.sh
ubuntu:
machine: true
environment:
DETECTED_OS: ubuntu:artful
DOCKER_IMAGE: cyplo/artful_base
steps:
- checkout
- run: ./test.sh
workflows:
version: 2
jobs:
- fedora
- ubuntu