From 82bc1835f660169abde8bd855bcac4d6cea6ed50 Mon Sep 17 00:00:00 2001 From: Andrew Rousset Date: Fri, 20 May 2022 18:24:08 -0500 Subject: [PATCH] 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 --- .github/workflows/update_deps.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_deps.yml b/.github/workflows/update_deps.yml index 37b29490d..f44f3056f 100644 --- a/.github/workflows/update_deps.yml +++ b/.github/workflows/update_deps.yml @@ -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