From 11f866d5069c695d34cf66712d5f319aca78315b Mon Sep 17 00:00:00 2001 From: Lukas Bloznelis Date: Sat, 4 Nov 2023 17:58:30 +0200 Subject: [PATCH] fix: add missing x11 lib for linux build --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 03b4271..77a6904 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -51,6 +51,11 @@ jobs: with: targets: ${{ matrix.target }} + - name: Install x11 dev for Linux + if: matrix.build == 'linux' + run: | + sudo apt install libx11-dev + - name: Build uses: actions-rs/cargo@v1 with: