From 5d0d630237097b6bfcfff46a12e681ee2d3ca967 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 6 Jul 2020 13:21:20 -0600 Subject: [PATCH] github-ci: build rust doc on stable and 1.34.2 Nothing is done with the rustdoc, its just build to make sure it builds with our supported versions of Rust --- .github/workflows/builds.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 17a258f97c..c4ad71e7f9 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -179,6 +179,9 @@ jobs: env: DISTCHECK_CONFIGURE_FLAGS: "--enable-unittests --enable-debug --enable-lua --enable-geoip --enable-profiling --enable-profiling-locks" - run: test -e doc/userguide/suricata.1 + - name: Building Rust documentation + run: make doc + working-directory: rust - name: Preparing distribution run: | mkdir dist @@ -276,6 +279,9 @@ jobs: - run: make -j2 - run: make install - run: make install-conf + - name: Building Rust documentation + run: make doc + working-directory: rust fedora-31: name: Fedora 31