forked from OISF/suricata
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github-ci: add minimal build for Ubuntu and AlmaLinux
- Loading branch information
1 parent
6d663ec
commit cd7c35e
Showing
4 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
# Serves for RPM-based docs and is verified by Github Actions | ||
|
||
# install-guide-documentation tag start: Minimal RPM-based dependencies | ||
sudo dnf install -y rustc cargo cbindgen | ||
sudo dnf install -y gcc gcc-c++ jansson-devel libpcap-devel \ | ||
libyaml-devel make pcre2-devel zlib-devel | ||
# install-guide-documentation tag end: Minimal RPM-based dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
# Serves for Ubuntu/Debian docs and is verified by Github Actions | ||
|
||
# install-guide-documentation tag start: Minimal dependencies | ||
sudo apt -y install autoconf automake build-essential cargo \ | ||
cbindgen libjansson-dev libpcap-dev libpcre2-dev libtool \ | ||
libyaml-dev make pkg-config rustc zlib1g-dev | ||
# install-guide-documentation tag end: Minimal dependencies |