Don't install arm-none-eabi-binutils

This commit is contained in:
Gwilym Inzani 2023-04-30 18:18:30 +01:00
parent 2de1b08f42
commit 878402a5b6
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y
run: sudo apt-get update && sudo apt-get install build-essential libelf-dev zip -y
- name: Install Miri
run: |
rustup toolchain install nightly --component miri

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi zip -y
run: sudo apt-get update && sudo apt-get install build-essential zip -y
- name: Check out repository
uses: actions/checkout@v3
with: