Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tricked-dev committed Jan 3, 2022
1 parent 3720262 commit 096645d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,18 @@ jobs:
target: ${{ matrix.target }}
override: true

- name: Install deps
if: matrix.build == 'x86_64-linux'
run: |
sudo apt-get update
sudo apt-get install -y -qq pkg-config libssl-dev libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Install deps
if: matrix.build == 'aarch64-linux'
run: |
dpkg --add-architecture arm64 && \
apt-get update && \
apt-get install --assume-yes libssl-dev libssl-dev:arm64 zlib1g-dev zlib1g-dev:arm64
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 096645d

Please sign in to comment.