From c913415bbca7caaad9c4b569f32621123ab4a58f Mon Sep 17 00:00:00 2001 From: Balint Molnar Date: Wed, 8 May 2024 11:49:25 +0200 Subject: [PATCH] Install docker only when not in github --- test/setup_suite.bash | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/setup_suite.bash b/test/setup_suite.bash index f0a98a4e..7488a8d7 100644 --- a/test/setup_suite.bash +++ b/test/setup_suite.bash @@ -12,7 +12,10 @@ setup_suite() { _install_setup_prerequisits() { make setup-vm - sudo apt install openssl docker.io -y + sudo apt install openssl -y + if [[ -n "${GITHUB_ACTION}" ]]; then + sudo apt install docker.io -y + fi } _build_and_install_camblet_with_dkms() {