Skip to content

Commit

Permalink
https://github.com/actions/runner-images/issues/9733
Browse files Browse the repository at this point in the history
workaround
  • Loading branch information
ediardi committed Apr 24, 2024
1 parent d6e88ae commit 86de2ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/actions/install-linux-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ runs:
using: "composite"
steps:
- run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt-get update
sudo apt-get install --no-install-recommends \
libxrandr-dev \
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:

- name: Install cppcheck
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt-get update
sudo apt-get install --no-install-recommends cppcheck
Expand Down Expand Up @@ -233,6 +234,7 @@ jobs:
- name: Install Linux Dependencies
if: runner.os == 'Linux'
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
# sudo apt-get update
sudo apt-get install --no-install-recommends ninja-build xdotool \
openbox \
Expand Down Expand Up @@ -261,6 +263,7 @@ jobs:
- name: Install valgrind
if: runner.os == 'Linux' && matrix.runs_valgrind == true
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
# sudo apt-get update
sudo apt-get install --no-install-recommends valgrind
Expand Down

0 comments on commit 86de2ea

Please sign in to comment.