add clang to get dependencies for building rust code (#639)

* add clang to get dependencies for building rust code

* add clang to get dependencies for building rust code
This commit is contained in:
Andrew Rousset
2022-05-20 18:24:08 -05:00
committed by GitHub
parent efa840ede4
commit 82bc1835f6

View File

@@ -41,7 +41,7 @@ jobs:
if: startsWith(matrix.platform, 'opensuse')
run: |
sudo zypper refresh
sudo zypper --non-interactive install llvm
sudo zypper --non-interactive install llvm clang
- name: install llvm on redhat-based
if: >
startsWith(matrix.platform, 'amazonlinux') ||
@@ -49,11 +49,11 @@ jobs:
startsWith(matrix.platform, 'fedora') ||
startsWith(matrix.platform, 'fedora')
run: |
sudo yum install -y llvm
sudo yum install -y llvm clang
- name: install llvm on debian-based
if: >
startsWith(matrix.platform, 'debian') ||
startsWith(matrix.platform, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -yq llvm
sudo apt-get install -yq llvm clang