Update Ubuntu dependencies to fix CI

I was not sure what version to use as Ubuntu jammy has clang 11, 12, 13 and 14 (!). I stayed conservative.
This commit is contained in:
Matěj Laitl 2023-01-02 16:38:55 +01:00
parent 2859684864
commit 90c03de835
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ jobs:
- name: Install Dependencies
env:
ACCEPT_EULA: Y
run: sudo apt-get -y update && sudo apt-get install -f && sudo apt-get -y install libsqlite3-dev libclang-9-dev
run: sudo apt-get -y update && sudo apt-get install -f && sudo apt-get -y install libsqlite3-dev libclang-11-dev
- uses: Swatinem/rust-cache@v1
- name: Build
uses: actions-rs/cargo@v1

View file

@ -28,7 +28,7 @@ jobs:
- name: Install Dependencies (if Ubuntu)
env:
ACCEPT_EULA: Y
run: sudo apt-get -y update && sudo apt-get install -f && sudo apt-get -y install libsqlite3-dev libclang-9-dev
run: sudo apt-get -y update && sudo apt-get install -f && sudo apt-get -y install libsqlite3-dev libclang-11-dev
if: contains(runner.os, 'Linux')
- uses: Swatinem/rust-cache@v1
- name: Build