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 782f79d commit 7731187Copy full SHA for 7731187
.github/workflows/build.yml
@@ -0,0 +1,28 @@
1
+name: build
2
+
3
+on:
4
+ workflow_call:
5
+ inputs:
6
+ os:
7
+ required: true
8
+ type: string
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ container: ${{ inputs.os }}
14
+ steps:
15
+ - name: Install git
16
+ run: dnf install -y git
17
+ - name: Check out repository code
18
+ uses: actions/checkout@v4
19
+ - name: Install dependencies
20
+ uses: ./.github/actions/install-dependencies
21
+ with:
22
+ pcap: true
23
+ - name: Mark github workspace as safe
24
+ run: git config --system --add safe.directory $PWD
25
+ - name: make
26
+ run: make
27
+ - name: make rpm
28
+ run: make rpm
0 commit comments