Skip to content

Commit

Permalink
switch deps order
Browse files Browse the repository at this point in the history
  • Loading branch information
Schmluk committed Jun 15, 2024
1 parent 689b733 commit 7dad19b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cmake_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7dad19b

Please sign in to comment.