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:
2018-06-03 17:10:28 +01:00
DETECTED_OS: fedora:28
DOCKER_IMAGE: cyplo/fedora28_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:
2018-06-03 17:10:28 +01:00
DETECTED_OS: ubuntu:bionic
DOCKER_IMAGE: cyplo/bionic_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