Skip to content

Commit

Permalink
Separate build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Slackadays committed Dec 17, 2023
1 parent ad5c185 commit 04d32dc
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build-clipboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,12 @@ jobs:
sudo dpkg --add-architecture "${{ matrix.arch.os }}"
sudo apt update || true
sudo apt install -y \
"${GPP_PACKAGE}" \
"libx11-dev:${{ matrix.arch.os }}" \
"libwayland-dev:${{ matrix.arch.os }}" \
"wayland-protocols:${{ matrix.arch.os }}" \
"libasound-dev:${{ matrix.arch.os }}" \
"liburing-dev:${{ matrix.arch.os }}"
sudo apt install -y "${GPP_PACKAGE}"
sudo apt install -y "libx11-dev:${{ matrix.arch.os }}"
sudo apt install -y "libwayland-dev:${{ matrix.arch.os }}"
sudo apt install -y "wayland-protocols:${{ matrix.arch.os }}"
sudo apt install -y "libasound-dev:${{ matrix.arch.os }}"
sudo apt install -y "liburing-dev:${{ matrix.arch.os }
cd build
Expand Down

0 comments on commit 04d32dc

Please sign in to comment.