Skip to content

Commit

Permalink
workflows: Fix CI for Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkuhn committed Jul 13, 2024
1 parent 3e4e103 commit 87e6841
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ jobs:
if test "${{ matrix.os.compiler }}" = 'clang'
then
apt --yes --no-install-recommends install clang
if test "${{ matrix.os.image }}" = 'ubuntu:24.04'
then
apt --yes --no-install-recommends install libclang-rt-dev
fi
fi
- name: Cache dependencies
id: cache
Expand Down Expand Up @@ -175,7 +180,7 @@ jobs:
run: |
sudo apt --yes purge glib-networking
sudo apt --yes --purge autoremove
sudo aa-remove-unknown
sudo aa-remove-unknown || true
- name: Install dependencies
if: ${{ matrix.dependencies == 'system' }}
run: |
Expand Down Expand Up @@ -312,7 +317,7 @@ jobs:
run: |
sudo apt --yes purge glib-networking mysql-client mysql-client-8.0 mysql-server mysql-server-8.0
sudo apt --yes --purge autoremove
sudo aa-remove-unknown
sudo aa-remove-unknown || true
sudo rm --recursive --force /var/lib/mysql
- name: Install dependencies
if: ${{ matrix.dependencies == 'system' }}
Expand Down

0 comments on commit 87e6841

Please sign in to comment.