dotfiles/.circleci/config.yml

30 lines
463 B
YAML
Raw Normal View History

2018-06-03 11:43:03 +01:00
version: 2
2018-06-03 11:40:48 +01:00
2018-06-03 11:13:11 +01:00
jobs:
2018-06-03 11:38:22 +01:00
fedora:
2018-06-03 11:17:49 +01:00
machine: true
2018-06-03 11:16:28 +01:00
environment:
2019-01-19 10:49:17 +00:00
DETECTED_OS: fedora:29
DOCKER_IMAGE: cyplo/fedora29_base
2018-06-03 11:16:28 +01:00
2018-06-03 11:13:11 +01:00
steps:
- checkout
2018-06-03 11:16:28 +01:00
- run: ./test.sh
2018-06-03 11:13:11 +01:00
2018-06-03 11:38:22 +01:00
ubuntu:
machine: true
environment:
2019-01-19 13:07:08 +00:00
DETECTED_OS: ubuntu:cosmic
DOCKER_IMAGE: cyplo/cosmic_base
2018-06-03 11:38:22 +01:00
steps:
- checkout
- run: ./test.sh
2018-06-03 11:43:03 +01:00
workflows:
version: 2
2018-06-03 11:44:20 +01:00
linux:
jobs:
- fedora
- ubuntu