[workflows] Add missing -y option to apt-get for abi tests (#133337)
This commit is contained in:
parent
6ff33edcdc
commit
7793bae97d
4
.github/workflows/libclang-abi-tests.yml
vendored
4
.github/workflows/libclang-abi-tests.yml
vendored
@ -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
|
||||
|
4
.github/workflows/llvm-tests.yml
vendored
4
.github/workflows/llvm-tests.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user