From 0cbfcf2aa608d3743fb5e5e8b5ce47836060e9d3 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Fri, 19 Mar 2021 14:02:53 +0100 Subject: [PATCH] build: Small cleanup of GitHub Actions --- .github/workflows/codeql-analysis.yml | 1 - .github/workflows/documentation.yml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6369d835..e2de54de 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -88,6 +88,5 @@ jobs: mkdir _lgtm_build_dir && cd _lgtm_build_dir conan install .. -s compiler.cppstd=20 -s compiler.libcxx=libstdc++11 -o mp-units:build_docs=False -e mp-units:CONAN_RUN_TESTS=True -b outdated -u conan build .. - - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 026897ff..e9988393 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -81,12 +81,12 @@ jobs: mkdir build && cd build conan install .. -s compiler.cppstd=20 -s compiler.libcxx=libstdc++11 -e mp-units:CONAN_RUN_TESTS=True -b outdated -u - name: Configure CMake + working-directory: build run: | - cd build cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake - name: Generate documentation + working-directory: build run: | - cd build cmake --build . --target documentation --config Release - name: Deploy documentation if: github.ref == 'refs/heads/master'