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 c718adb commit a45ac6dCopy full SHA for a45ac6d
.github/workflows/build.yml
@@ -1,6 +1,7 @@
1
name: Build and Publish LSOF Binary to a Release
2
3
on:
4
+ workflow_dispatch:
5
push:
6
tags:
7
- "v[0-9]+.[0-9]+.[0-9]+*"
@@ -12,14 +13,14 @@ jobs:
12
13
- name: Set up dependencies
14
run: |
15
sudo apt-get update
- sudo apt-get install -y gcc make libc6-dev
16
+ sudo apt-get install -y gcc make libc6-dev autotools-dev autoconf automake libtool bison flex
17
18
- name: Checkout code
19
uses: actions/checkout@v4
20
21
- name: Compile LSOF
22
- ./Configure
23
+ ./Configure linux
24
make
25
make install
26
lsof -v
0 commit comments