mirror of https://github.com/OISF/suricata
github-ci: add minimal build for Ubuntu and AlmaLinux
(cherry picked from commit cd7c35eb5a
)
pull/11352/head
parent
8216b5b229
commit
2101573c14
@ -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
|
@ -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
|
Loading…
Reference in New Issue