From 824bc372c548e8a1a8a6249ef6db9d277939a540 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Tue, 19 Apr 2022 12:09:56 -0700 Subject: [PATCH] Update doc gen VM to ubuntu-latest, output cmake version during configure --- .github/workflows/generate-docs.yml | 4 ++-- configure | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-docs.yml b/.github/workflows/generate-docs.yml index 8c8afc2df4..6159ddc528 100644 --- a/.github/workflows/generate-docs.yml +++ b/.github/workflows/generate-docs.yml @@ -12,7 +12,7 @@ defaults: jobs: generate: if: github.repository == 'zeek/zeek' - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: # We only perform a push if the action was triggered via a schedule @@ -60,7 +60,7 @@ jobs: sudo pip3 install -r doc/requirements.txt - name: Configure - run: ./configure + run: ./configure --disable-broker-tests --disable-cpp-tests - name: Build run: cd build && make -j $(nproc) diff --git a/configure b/configure index 80c009bc1a..0565fd1dff 100755 --- a/configure +++ b/configure @@ -442,6 +442,8 @@ echo "Build Directory : $builddir" echo "Source Directory: $sourcedir" cd $builddir +echo "Using $(cmake --version | head -1)" +echo if [ -n "$CMakeGenerator" ]; then "$CMakeCommand" -G "$CMakeGenerator" $CMakeCacheEntries $sourcedir else