Skip to content

Commit

Permalink
[CI] failures when installing using apt-get. (esphome#7593)
Browse files Browse the repository at this point in the history
  • Loading branch information
clydebarrow authored Oct 12, 2024
1 parent efe4c5e commit f224984
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,9 @@ jobs:
key: platformio-${{ matrix.pio_cache_key }}

- name: Install clang-tidy
run: sudo apt-get install clang-tidy-14
run: |
sudo apt-get update
sudo apt-get install clang-tidy-14
- name: Register problem matchers
run: |
Expand Down Expand Up @@ -397,7 +399,9 @@ jobs:
file: ${{ fromJson(needs.list-components.outputs.components) }}
steps:
- name: Install dependencies
run: sudo apt-get install libsdl2-dev
run: |
sudo apt-get update
sudo apt-get install libsdl2-dev
- name: Check out code from GitHub
uses: actions/[email protected]
Expand Down Expand Up @@ -451,7 +455,9 @@ jobs:
run: echo ${{ matrix.components }}

- name: Install dependencies
run: sudo apt-get install libsdl2-dev
run: |
sudo apt-get update
sudo apt-get install libsdl2-dev
- name: Check out code from GitHub
uses: actions/[email protected]
Expand Down

0 comments on commit f224984

Please sign in to comment.