Skip to content

Commit

Permalink
Merge pull request #91 from fgont/workflows-sudo-to-install
Browse files Browse the repository at this point in the history
Sudo to install tools
  • Loading branch information
fgont authored Oct 16, 2024
2 parents f8bdfbb + 2834eb6 commit 6a51f8f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: sudo apt install -y libpcap-dev
- name: Build and install tools
run: make install
run: sudo make install
- name: Unit tests
run: make unit_tests

Expand All @@ -31,7 +31,7 @@ jobs:
- name: Install dependencies
run: sudo apt install -y libpcap-dev
- name: Build and install tools
run: make install
run: sudo make install
- name: Unit tests
run: make unit_tests

Expand All @@ -44,7 +44,7 @@ jobs:
- name: Install dependencies
run: sudo apt install -y libpcap-dev
- name: Build and install tools
run: make install
run: sudo make install
- name: Unit tests
run: make unit_tests

Expand All @@ -59,7 +59,7 @@ jobs:
brew update
brew install libpcap
- name: Build and install tools
run: make install
run: sudo make install
- name: Unit tests
run: make unit_tests

Expand All @@ -74,7 +74,7 @@ jobs:
brew update
brew install libpcap
- name: Build and install tools
run: make install
run: sudo make install
- name: Unit tests
run: make unit_tests

Expand All @@ -89,7 +89,7 @@ jobs:
brew update
brew install libpcap
- name: Build and install tools
run: make install
run: sudo make install
- name: Unit tests
run: make unit_tests

Expand All @@ -104,6 +104,6 @@ jobs:
brew update
brew install libpcap
- name: Build and install tools
run: make install
run: sudo make install
- name: Unit tests
run: make unit_tests

0 comments on commit 6a51f8f

Please sign in to comment.