Skip to content

Commit

Permalink
mount tmp in test pipelines
Browse files Browse the repository at this point in the history
This is needed for running the integration tests in
vmm-reference. They need access to resources from tmp.

Signed-off-by: Laura Loghin <[email protected]>
  • Loading branch information
lauralt authored and alxiord committed Jan 6, 2021
1 parent 03fcf08 commit 631c82a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ steps:
privileged: true
image: "rustvmm/dev:v8"
always-pull: true
volumes:
- "/tmp:/tmp"

- label: "unittests-gnu-arm"
commands:
Expand All @@ -92,6 +94,8 @@ steps:
privileged: true
image: "rustvmm/dev:v8"
always-pull: true
volumes:
- "/tmp:/tmp"

- label: "unittests-musl-x86"
command:
Expand All @@ -106,6 +110,8 @@ steps:
privileged: true
image: "rustvmm/dev:v8"
always-pull: true
volumes:
- "/tmp:/tmp"

- label: "unittests-musl-arm"
command:
Expand All @@ -120,6 +126,8 @@ steps:
privileged: true
image: "rustvmm/dev:v8"
always-pull: true
volumes:
- "/tmp:/tmp"

- label: "clippy-x86"
commands:
Expand Down Expand Up @@ -175,6 +183,8 @@ steps:
privileged: true
image: "rustvmm/dev:v8"
always-pull: true
volumes:
- "/tmp:/tmp"

- label: "coverage-arm"
commands:
Expand All @@ -190,6 +200,8 @@ steps:
privileged: true
image: "rustvmm/dev:v8"
always-pull: true
volumes:
- "/tmp:/tmp"

- label: "commit-format"
commands:
Expand Down

0 comments on commit 631c82a

Please sign in to comment.