From d0ac0a3063e6626dc16c463b3fc3e491d40c7caa Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sat, 29 Aug 2020 18:55:14 +0200 Subject: [PATCH] fix missing changes to CD pipeline for clipboard stuff --- .github/workflows/cd.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index f247a188..960da3fe 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -27,6 +27,11 @@ jobs: profile: minimal components: clippy + - name: Install dependencies for clipboard access + if: matrix.os == 'ubuntu-latest' + run: | + sudo apt-get -qq install libxcb-shape0-dev libxcb-xfixes0-dev + - name: Build run: cargo build - name: Run tests