[llvm] [workflows] Add missing -y option to apt-get for abi tests (PR #133337)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 16:11:09 PDT 2025
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/133337
None
>From 49af22cea98246f1d643c8ffe86df4436007b763 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Thu, 27 Mar 2025 08:58:48 -0700
Subject: [PATCH] [workflows] Add missing -y option to apt-get for abi tests
---
.github/workflows/libclang-abi-tests.yml | 4 ++--
.github/workflows/llvm-tests.yml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/libclang-abi-tests.yml b/.github/workflows/libclang-abi-tests.yml
index 27cb7c4f75513..4d47c07f42205 100644
--- a/.github/workflows/libclang-abi-tests.yml
+++ b/.github/workflows/libclang-abi-tests.yml
@@ -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
diff --git a/.github/workflows/llvm-tests.yml b/.github/workflows/llvm-tests.yml
index 3b44ef6dca502..a9bd8db462cf7 100644
--- a/.github/workflows/llvm-tests.yml
+++ b/.github/workflows/llvm-tests.yml
@@ -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
More information about the llvm-commits
mailing list