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 6, 2021
1 parent c213726 commit 152d6dd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 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/clang-static-analyzer.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 clang-tools-10 libcunit1-dev wget unzip
run: |
sudo apt-get update
sudo apt-get install clang-tools-10 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 152d6dd

Please sign in to comment.