Skip to content

Commit

Permalink
CI: install X11 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
XPhyro committed Aug 28, 2024
1 parent 82b3266 commit ef9be3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install workflow dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get -y install moreutils shellcheck pylint clang-tools cppcheck libbsd-dev
sudo apt-get -y install moreutils shellcheck pylint clang-tools cppcheck libbsd-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev
git submodule update --init --recursive
env:
SHELL_VERBOSE: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install workflow dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get -y install libmagic-dev moreutils libbsd-dev cargo libncurses5-dev libncursesw5-dev ncurses-bin
sudo apt-get -y install libmagic-dev moreutils libbsd-dev cargo libncurses5-dev libncursesw5-dev ncurses-bin libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev
git submodule update --init --recursive
env:
SHELL_VERBOSE: 1
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ pipeline:
image: ubuntu:22.04
commands: |
apt-get -y update
apt-get -y install make git gcc g++ zlib1g-dev libmagic-dev moreutils libbsd-dev cargo
apt-get -y install make git gcc g++ zlib1g-dev libmagic-dev moreutils libbsd-dev cargo libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev
make install
make test

0 comments on commit ef9be3c

Please sign in to comment.