File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ jobs:
103
103
uses : llvm/actions/install-ninja@main
104
104
- name : Install abi-compliance-checker
105
105
run : |
106
+ sudo apt-get update
106
107
sudo apt-get install abi-dumper autoconf pkg-config
107
108
- name : Install universal-ctags
108
109
run : |
@@ -154,7 +155,9 @@ jobs:
154
155
path : build-latest
155
156
156
157
- name : Install abi-compliance-checker
157
- run : sudo apt-get install abi-compliance-checker
158
+ run : |
159
+ sudo apt-get update
160
+ sudo apt-get install abi-compliance-checker
158
161
- name : Compare ABI
159
162
run : |
160
163
for lib in ${{ needs.abi-dump-setup.outputs.ABI_LIBS }}; do
Original file line number Diff line number Diff line change 91
91
uses : llvm/actions/install-ninja@main
92
92
- name : Install abi-compliance-checker
93
93
run : |
94
+ sudo apt-get update
94
95
sudo apt-get install abi-dumper autoconf pkg-config
95
96
- name : Install universal-ctags
96
97
run : |
@@ -163,7 +164,9 @@ jobs:
163
164
path : symbol-list
164
165
165
166
- name : Install abi-compliance-checker
166
- run : sudo apt-get install abi-compliance-checker
167
+ run : |
168
+ sudo apt-get update
169
+ sudo apt-get install abi-compliance-checker
167
170
- name : Compare ABI
168
171
run : |
169
172
if [ -s symbol-list/llvm.symbols ]; then
You can’t perform that action at this time.
0 commit comments