Skip to content

Commit

Permalink
Revert "Simplify linux dep install"
Browse files Browse the repository at this point in the history
This reverts commit 5711221.
  • Loading branch information
tayden committed Dec 5, 2022
1 parent 5711221 commit 1ca2b46
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/gui-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- name: Set up Python 3.9
uses: actions/setup-python@v4
Expand All @@ -37,7 +37,15 @@ jobs:

- name: Install Linux dependencies
if: ${{ runner.os == 'Linux' }}
run: sudo apt-get install libxcb-xinerama0
run: >
sudo apt-get install
'^libxcb.*-dev'
libx11-xcb-dev
libglu1-mesa-dev
libxrender-dev
libxi-dev
libxkbcommon-dev
libxkbcommon-x11-dev
- name: Install dependencies
run: |
Expand Down Expand Up @@ -78,7 +86,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- name: Get tag
id: tag
Expand Down

0 comments on commit 1ca2b46

Please sign in to comment.