Skip to content

release/20.x: [workflows] Add missing -y option to apt-get for abi tests (#133337) #133813

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/libclang-abi-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/llvm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading