Skip to content

Commit 1813ada

Browse files
committed
github: Add apt update, use -y
Current workflow seems to be failing, but apt update helps. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
1 parent 0b4a214 commit 1813ada

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/c-cpp.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,10 @@ jobs:
5757

5858
steps:
5959
- uses: actions/checkout@v3
60+
- name: update apt
61+
run: sudo apt update -y
6062
- name: install compiler
61-
run: sudo apt install ${{ matrix.config.deps }}
63+
run: sudo apt install -y ${{ matrix.config.deps }}
6264
- name: install deps
6365
run: sudo apt install -y meson ninja-build libdrm-dev libegl1-mesa-dev libgles2-mesa-dev libwayland-dev libx11-xcb-dev libx11-dev libgbm-dev libevdev-dev libfmt-dev
6466
- name: configure

0 commit comments

Comments
 (0)