Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Install docker only when not in github
Browse files Browse the repository at this point in the history
  • Loading branch information
baluchicken committed May 8, 2024
1 parent caebd3d commit c913415
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/setup_suite.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit c913415

Please sign in to comment.