Skip to content

Commit

Permalink
Fixing CI to run sequentially
Browse files Browse the repository at this point in the history
This actually makes some steps be required to be sequential. The steps
that were used to be ran sequentially was determined by whether or not
they used the naive snapshotter

Signed-off-by: xibz <[email protected]>
  • Loading branch information
xibz committed Jun 6, 2019
1 parent 86019ae commit 2e8ef3e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ steps:
agents:
queue: "${BUILDKITE_AGENT_META_DATA_QUEUE:-default}"
command: 'sudo losetup -D'
concurrency: 1
concurrency_group: 'loop-device test'

- wait

Expand All @@ -54,6 +56,8 @@ steps:
DOCKER_IMAGE_TAG: "$BUILDKITE_BUILD_NUMBER"
EXTRAGOARGS: "-v -count=1"
command: 'cd snapshotter && make test-docker-all'
concurrency: 1
concurrency_group: 'loop-device test'

- label: ":running_shirt_with_sash: runtime unit tests"
agents:
Expand All @@ -72,6 +76,8 @@ steps:
artifact_paths:
- "runtime/logs/*"
command: 'cd runtime && make test-docker-isolated'
concurrency: 1
concurrency_group: 'loop-device test'

- label: ":fencer: agent unit tests"
agents:
Expand Down

0 comments on commit 2e8ef3e

Please sign in to comment.