Skip to content

Commit

Permalink
Install libltdl-dev explicitly, needed for bootstrap of autotools.
Browse files Browse the repository at this point in the history
  • Loading branch information
besser82 committed Jan 7, 2025
1 parent 34132bc commit f7e308b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Install packages
run: |
packages="lcov"
packages="lcov libltdl-dev"
if [ "$CC" = clang ]; then
# need 'llvm' for llvm-cov, as well as clang
packages="$packages clang llvm"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install packages
run: sudo apt-get install libltdl-dev

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/config-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
uses: actions/checkout@v4

- name: Install packages
run: sudo apt-get install libltdl-dev
if: ${{ matrix.compiler == 'clang' }}
run: sudo apt-get install clang

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install packages
run: sudo apt-get install libltdl-dev

- name: Download Coverity Build Tool
env:
CVT_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/distcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install packages
run: sudo apt-get install libltdl-dev

# The distcheck build is run with the oldest version of perl we support,
# in order to verify that we still support it.
- name: Install Perl 5.14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/memcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@v4

- name: Install packages
run: sudo apt-get install clang valgrind
run: sudo apt-get install clang libltdl-dev valgrind

- name: Versions of build tools
id: build-tools
Expand Down

0 comments on commit f7e308b

Please sign in to comment.