use HTTPS when adding rust-vmm-ci as a submodule

If we clone rust-vmm-ci with SSH Buildkite requires an ssh key
when cloning the repository for some reason.

Signed-off-by: Andreea Florescu <fandree@amazon.com>
This commit is contained in:
Andreea Florescu
2019-07-12 11:13:48 +02:00
committed by Samuel Ortiz
parent 8b60273cef
commit bb1cd14d2c

View File

@@ -17,7 +17,7 @@ To run the integration tests defined in the pipeline as part of the CI:
# Add rust-vmm-ci as a submodule. This will point to the latest rust-vmm-ci
# commit from the master branch. The following command will also add a
# `.gitmodules` file and the `rust-vmm-ci` to the index.
git submodule add git@github.com:rust-vmm/rust-vmm-ci.git
git submodule add https://github.com/rust-vmm/rust-vmm-ci.git
# Commit the changes to your repository so that the CI can run using the
# rust-vmm-ci pipeline and tests.
git commit -s -m "Added rust-vmm-ci as submodule"