Skip to content

Commit

Permalink
Update cache before installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ybubnov committed Apr 18, 2024
1 parent 518e1a5 commit 461ad92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install third-party libraries
run: sudo apt install -y libboost-test-dev libtorch-dev
run: >
apt update
apt install -y libboost-test-dev libtorch-dev --no-install-recommends
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
Expand Down

0 comments on commit 461ad92

Please sign in to comment.