Only run the older if the newer succeeds

Spreads the initial builds across different platforms more effectively
and avoids potential redundant failing builds on different versions of a
single platform.
This commit is contained in:
Jean-Paul Calderone 2018-07-05 09:03:35 -04:00
parent b9278cd25a
commit dd9acf25c8

View File

@ -5,16 +5,28 @@ workflows:
version: 2
ci:
jobs:
- "lint"
- "debian-8"
# Platforms
- "debian-9"
- "ubuntu-16.04"
- "debian-8":
requires:
- "debian-9"
- "ubuntu-18.04"
- "centos-7"
- "fedora-27"
- "ubuntu-16.04":
requires:
- "ubuntu-18.04"
- "fedora-28"
- "fedora-27":
requires:
- "fedora-28"
- "centos-7"
- "slackware-14.2"
# Other assorted tasks and configurations
- "lint"
- "deprecations"
- "c-locale"