diff options
| author | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2025-08-07 19:35:11 +0300 |
|---|---|---|
| committer | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2025-08-07 19:38:31 +0300 |
| commit | 1813adae89203e15fc60344864fc2ca0d3c75e07 (patch) | |
| tree | a8508dc0f10949f16082e872f8a5ec0a6b80bf9e /.github | |
| parent | 0b4a214b48212bdf6c066912447e6a235c8d2978 (diff) | |
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>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/c-cpp.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 17978a6..c30e6ba 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -57,8 +57,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: update apt + run: sudo apt update -y - name: install compiler - run: sudo apt install ${{ matrix.config.deps }} + run: sudo apt install -y ${{ matrix.config.deps }} - name: install deps 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 - name: configure |
