Skip to content

Commit

Permalink
PMM-12770 centos fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadym Yarosh committed Dec 26, 2023
1 parent e24ccac commit a0b5a22
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pmm-package-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,14 @@ jobs:
export install_repo=${{ env.REPO }}
export tarball_link=${{ env.TARBALL }}
if [[ "${{ env.VM_BOX }}" =~ "centos" || "${{ env.VM_BOX }}" =~ "oracle" ]]; then
if [[ "${{ env.VM_BOX }}" =~ "centos7" ]]; then
sudo yum install -y epel-release
sudo yum -y update
sudo yum install -y ansible git wget
fi
if [[ "${{ env.VM_BOX }}" =~ "oracle" ]]; then
sudo yum install -y epel-release
sudo yum -y update
# sudo yum install -y ansible git wget
sudo yum install -y ansible-core git wget
fi
if [[ "${{ env.VM_BOX }}" =~ "debian" ]]; then
Expand Down

0 comments on commit a0b5a22

Please sign in to comment.