We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bbb385 commit 549b1ccCopy full SHA for 549b1cc
.github/workflows/cmake.yml
@@ -43,6 +43,15 @@ jobs:
43
steps:
44
- uses: actions/checkout@v4
45
46
+ - name: Install Clang and Dependencies
47
+ run: |
48
+ yum -y update
49
+ yum -y install epel-release
50
+ yum -y install clang llvm-toolset-7 cmake make gcc-c++ git which tar
51
+ ln -sf /usr/bin/clang /usr/local/bin/clang
52
+ ln -sf /usr/bin/clang++ /usr/local/bin/clang++
53
+ ln -sf /usr/bin/cmake /usr/local/bin/cmake
54
+
55
- name: Set reusable strings
56
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
57
id: strings
0 commit comments