Skip to content

Commit

Permalink
ci: Build with libxinerama-dev
Browse files Browse the repository at this point in the history
Fixes unused imports warnings and, more importantly, actually builds the
code that is then used by xmonad and many others.
  • Loading branch information
liskin committed Mar 28, 2021
1 parent abf81b4 commit 335dd4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common
apt-add-repository -y 'ppa:hvr/ghc'
apt-get update
apt-get install -y $CC cabal-install-3.4 libx11-dev libxext-dev libxrandr-dev libxss-dev
apt-get install -y $CC cabal-install-3.4 libx11-dev libxext-dev libxinerama-dev libxrandr-dev libxss-dev
env:
CC: ${{ matrix.compiler }}
- name: Set PATH and environment variables
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
sudo apt install -y \
libx11-dev \
libxext-dev \
libxinerama-dev \
libxrandr-dev \
libxss-dev \
#
Expand Down
2 changes: 1 addition & 1 deletion cabal.haskell-ci
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
apt: libx11-dev libxext-dev libxrandr-dev libxss-dev
apt: libx11-dev libxext-dev libxinerama-dev libxrandr-dev libxss-dev
github-patches: .github/workflows/haskell-ci.yml.patch

0 comments on commit 335dd4c

Please sign in to comment.