From 7dad19b6bcf118cf687add2ef403194b7a0c4680 Mon Sep 17 00:00:00 2001 From: lschmid Date: Fri, 14 Jun 2024 23:20:05 -0400 Subject: [PATCH] switch deps order --- .github/workflows/cmake_build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake_build.yml b/.github/workflows/cmake_build.yml index cdb1f89..85c7386 100644 --- a/.github/workflows/cmake_build.yml +++ b/.github/workflows/cmake_build.yml @@ -17,18 +17,18 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Configure CMake - shell: bash - run: | - cd ${{github.workspace}} - cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - - name: Install Deps shell: bash run: | apt-get update apt-get install -y libeigen3-dev libgoogle-glog-dev libgtest-dev + - name: Configure CMake + shell: bash + run: | + cd ${{github.workspace}} + cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + - name: Build shell: bash run: cmake --build ${{github.workspace}}/build