[workflows] Add missing -y option to apt-get for abi tests (#133337)

This commit is contained in:
Tom Stellard 2025-03-31 15:30:05 -07:00 committed by GitHub
parent 6ff33edcdc
commit 7793bae97d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -104,7 +104,7 @@ jobs:
- name: Install abi-compliance-checker
run: |
sudo apt-get update
sudo apt-get install abi-dumper autoconf pkg-config
sudo apt-get install -y abi-dumper autoconf pkg-config
- name: Install universal-ctags
run: |
git clone https://github.com/universal-ctags/ctags.git
@ -157,7 +157,7 @@ jobs:
- name: Install abi-compliance-checker
run: |
sudo apt-get update
sudo apt-get install abi-compliance-checker
sudo apt-get install -y abi-compliance-checker
- name: Compare ABI
run: |
for lib in ${{ needs.abi-dump-setup.outputs.ABI_LIBS }}; do

View File

@ -92,7 +92,7 @@ jobs:
- name: Install abi-compliance-checker
run: |
sudo apt-get update
sudo apt-get install abi-dumper autoconf pkg-config
sudo apt-get -y install abi-dumper autoconf pkg-config
- name: Install universal-ctags
run: |
git clone https://github.com/universal-ctags/ctags.git
@ -166,7 +166,7 @@ jobs:
- name: Install abi-compliance-checker
run: |
sudo apt-get update
sudo apt-get install abi-compliance-checker
sudo apt-get -y install abi-compliance-checker
- name: Compare ABI
run: |
if [ -s symbol-list/llvm.symbols ]; then