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 f88c299 commit cc66dd7Copy full SHA for cc66dd7
.github/actions/install-dependencies/action.yml
@@ -0,0 +1,21 @@
1
+name: 'Install Dependencies'
2
+description: 'Install required dependencies in container'
3
+
4
+inputs:
5
+ clang-tools:
6
+ description: 'Install clang & clang-tools-extra'
7
+ required: false
8
+ default: false
9
10
+runs:
11
+ using: 'composite'
12
+ steps:
13
+ - name: Install build dependencies
14
+ shell: bash
15
+ run: |
16
+ dnf install -y make gcc-c++ cmake3 git rpm-build fuse3-devel
17
+ - name: Install clang tools
18
+ if: ${{ inputs.clang-tools == 'true' }}
19
20
21
+ dnf install -y clang clang-tools-extra
0 commit comments