diff options
| author | Emilien Devos <4016501+unixfox@users.noreply.github.com> | 2024-10-14 00:02:41 +0200 |
|---|---|---|
| committer | Emilien Devos <4016501+unixfox@users.noreply.github.com> | 2024-10-14 00:02:41 +0200 |
| commit | 0d0381870003d8a8286e227043f5d1ddbeacb2fb (patch) | |
| tree | 51636ea5dc341f65f3587a400efb2667e7ce8cf1 /.github/workflows | |
| parent | e6f52eaf00745732f8c6a6915f7d4df8f84aa29c (diff) | |
| download | invidious-0d0381870003d8a8286e227043f5d1ddbeacb2fb.tar.gz invidious-0d0381870003d8a8286e227043f5d1ddbeacb2fb.tar.bz2 invidious-0d0381870003d8a8286e227043f5d1ddbeacb2fb.zip | |
libsqlite3-dev is now missing in the CI env
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de538915..1bfa501d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,11 @@ jobs: with: submodules: true + - name: Install required APT packages + run: | + sudo apt install -y libsqlite3-dev + shell: bash + - name: Install Crystal uses: crystal-lang/install-crystal@v1.8.0 with: |
