ci: Do not install recommendations from apt-get (#970)
Some checks are pending
build / build (push) Waiting to run

This commit is contained in:
Rachel 2026-02-23 16:49:49 -08:00 committed by GitHub
parent 8be36972e3
commit 77ceae0158
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ jobs:
- name: Install Software
run: |
sudo apt-get update -y
sudo apt-get install -y bison flex g++ gcc-arm-none-eabi git make ninja-build pkg-config python3 wget xz-utils
sudo apt-get install -y --no-install-recommends bison flex g++ gcc-arm-none-eabi git make ninja-build pkg-config python3 wget xz-utils
- name: Checkout Repo
uses: actions/checkout@v2