From bb1cd14d2c164b4f699b08c885c06a02fbe3f7b0 Mon Sep 17 00:00:00 2001 From: Andreea Florescu Date: Fri, 12 Jul 2019 11:13:48 +0200 Subject: [PATCH] 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 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 668edd5..3a75273 100644 --- a/README.md +++ b/README.md @@ -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"