From b8aeb12d36eecab1720fb9ca28d08c9d54939b46 Mon Sep 17 00:00:00 2001 From: Joris Vaillant Date: Fri, 27 Sep 2024 15:53:47 +0200 Subject: [PATCH] ci: Simplify build and upload artifact --- .github/workflows/windows-conda.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows-conda.yml b/.github/workflows/windows-conda.yml index 215385bdd2..f0d2ddbb00 100644 --- a/.github/workflows/windows-conda.yml +++ b/.github/workflows/windows-conda.yml @@ -93,7 +93,7 @@ jobs: -DPYTHON_SITELIB=%CONDA_PREFIX%\Lib\site-packages ^ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ^ -DCMAKE_BUILD_TYPE=Release ^ - ${{ steps.get_labels.outputs.cmakeFlags }} ^ + -DBUILD_WITH_OPENMP_SUPPORT=ON ^ .. :: Build @@ -112,6 +112,14 @@ jobs: python -c "import pinocchio" if errorlevel 1 exit 1 + - name: Archive CMake logs + if: always() + uses: actions/upload-artifact@v4 + with: + name: cmake-logs + path: | + build/CMakeFiles/CMakeConfigureLog.yaml + check: if: always() name: check-windows-conda