Update update_deps.yml

Fix package install flags
This commit is contained in:
Jamil
2022-05-20 10:59:29 -07:00
committed by GitHub
parent 3c342dc063
commit b6d0f5512d

View File

@@ -40,7 +40,8 @@ jobs:
- name: install llvm on suse-based
if: startsWith(matrix.platform, 'opensuse')
run: |
sudo zypper install -y -t llvm
sudo zypper refresh
sudo zypper install --non-interactive llvm
- name: install llvm on redhat-based
if: >
startsWith(matrix.platform, 'amazonlinux') ||
@@ -48,6 +49,7 @@ jobs:
startsWith(matrix.platform, 'fedora') ||
startsWith(matrix.platform, 'fedora')
run: |
sudo yum check-update
sudo yum install -y llvm
- name: install llvm on debian-based
if: >