Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ jobs:
options: --privileged -v /var/run/docker.sock:/var/run/docker.sock
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
run: dnf install -y cargo
- uses: Swatinem/rust-cache@v2
- name: Run integration tests
run: |
set -o pipefail
Expand Down
6 changes: 5 additions & 1 deletion test/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,11 @@ ci_install_utilities() {
fi

dnf update -y
dnf install -y cargo nmap-ncat git gcc clang cmake make
if command -v cargo >/dev/null 2>&1 && command -v rustc >/dev/null 2>&1; then
dnf install -y nmap-ncat git gcc clang cmake make
else
dnf install -y cargo nmap-ncat git gcc clang cmake make
fi

# pgmoneta source build requires libev headers; install by pkg-config provide first.
if ! dnf install -y libev 'pkgconfig(libev)'; then
Expand Down
Loading