Skip to content

Commit

Permalink
[eclipse-wakaamaGH-182] ci: Refresh apt cache before installing
Browse files Browse the repository at this point in the history
Signed-off-by: Reto Schneider <[email protected]>
  • Loading branch information
rettichschnidi committed Apr 5, 2021
1 parent 557c87b commit 66e9c16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
fetch-depth: 0

- name: Install dependencies from APT repository
run: sudo apt-get install libcunit1-dev wget unzip
run: |
sudo apt-get update
sudo apt-get install libcunit1-dev wget unzip
- name: Install CMake
uses: lukka/get-cmake@latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
fetch-depth: 0

- name: Install dependencies from APT repository
run: sudo apt-get install gcovr libcunit1-dev wget unzip
run: |
sudo apt-get update
sudo apt-get install gcovr libcunit1-dev wget unzip
- name: Install CMake
uses: lukka/get-cmake@latest
Expand Down

0 comments on commit 66e9c16

Please sign in to comment.