File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ jobs:
103103 uses : llvm/actions/install-ninja@main
104104 - name : Install abi-compliance-checker
105105 run : |
106+ sudo apt-get update
106107 sudo apt-get install abi-dumper autoconf pkg-config
107108 - name : Install universal-ctags
108109 run : |
@@ -154,7 +155,9 @@ jobs:
154155 path : build-latest
155156
156157 - 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
158161 - name : Compare ABI
159162 run : |
160163 for lib in ${{ needs.abi-dump-setup.outputs.ABI_LIBS }}; do
Original file line number Diff line number Diff line change 9191 uses : llvm/actions/install-ninja@main
9292 - name : Install abi-compliance-checker
9393 run : |
94+ sudo apt-get update
9495 sudo apt-get install abi-dumper autoconf pkg-config
9596 - name : Install universal-ctags
9697 run : |
@@ -163,7 +164,9 @@ jobs:
163164 path : symbol-list
164165
165166 - 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
167170 - name : Compare ABI
168171 run : |
169172 if [ -s symbol-list/llvm.symbols ]; then
You can’t perform that action at this time.
0 commit comments