-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[GitHub][CI] Add a new container to use for the abi tests #166886
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
Changes from 5 commits
54548a7
5001ad5
2ac3c13
9809e74
8f9355a
68ab308
5c5e3f1
794f7bb
ff6a7e7
31cdd97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -72,6 +72,8 @@ jobs: | |
| if: github.repository_owner == 'llvm' | ||
| needs: abi-dump-setup | ||
| runs-on: ubuntu-24.04 | ||
| container: | ||
| image: ${{ format('ghcr.io/{0}/ci-container-abi-tests',github.repository_owner) }} | ||
|
||
| strategy: | ||
| matrix: | ||
| name: | ||
|
|
@@ -87,19 +89,6 @@ jobs: | |
| ref: ${{ github.sha }} | ||
| repo: ${{ github.repository }} | ||
| steps: | ||
| - name: Install Ninja | ||
| uses: llvm/actions/install-ninja@42d80571b13f4599bbefbc7189728b64723c7f78 # main | ||
| - name: Install abi-compliance-checker | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get -y install abi-dumper autoconf pkg-config | ||
| - name: Install universal-ctags | ||
| run: | | ||
| git clone https://github.com/universal-ctags/ctags.git | ||
| cd ctags | ||
| ./autogen.sh | ||
| ./configure | ||
| sudo make install | ||
| - name: Download source code | ||
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | ||
| with: | ||
|
|
@@ -143,6 +132,8 @@ jobs: | |
| abi-compare: | ||
| if: github.repository_owner == 'llvm' | ||
| runs-on: ubuntu-24.04 | ||
| container: | ||
| image: ${{ format('ghcr.io/{0}/ci-container-abi-tests',github.repository_owner) }} | ||
| needs: | ||
| - abi-dump-setup | ||
| - abi-dump | ||
|
|
@@ -163,10 +154,6 @@ jobs: | |
| name: symbol-list | ||
| path: symbol-list | ||
|
|
||
| - name: Install abi-compliance-checker | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get -y install abi-compliance-checker | ||
| - name: Compare ABI | ||
| run: | | ||
| if [ -s symbol-list/llvm.symbols ]; then | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: remove this newline to be consistent with the existing entries.