Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.20.0 #183

Merged
merged 16 commits into from
Jan 2, 2025
7 changes: 4 additions & 3 deletions .github/workflows/compile-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
artifact_name: target/debug/legion-kb-rgb
asset_name: legion-kb-rgb-linux
triplet: x64-linux
vcpkgCommitId: 'f6a5d4e8eb7476b8d7fc12a56dff300c1c986131'
vcpkgCommitId: '335a153de3e398208df4d25eff89d831727bc5da'
- name: windows
os: windows-latest
artifact_name: target/debug/legion-kb-rgb.exe
asset_name: legion-kb-rgb-windows
triplet: x64-windows-static
vcpkgCommitId: 'f6a5d4e8eb7476b8d7fc12a56dff300c1c986131'
vcpkgCommitId: '335a153de3e398208df4d25eff89d831727bc5da'

env:
VCPKG_DEFAULT_TRIPLET: ${{ matrix.triplet }}
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update -y
sudo apt install -y libunwind-dev
sudo apt-get install -y libx11-dev nasm libdbus-1-dev libudev-dev libxcb-randr0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libxi-dev libxtst-dev libusb-1.0-0-dev
sudo apt-get install -y libx11-dev nasm libdbus-1-dev libudev-dev libxcb-randr0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libxi-dev libxtst-dev libusb-1.0-0-dev libpango1.0-dev libgtk-3-dev libxdo-dev libappindicator3-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install nasm
elif [ "$RUNNER_OS" == "Windows" ]; then
Expand All @@ -66,6 +66,7 @@ jobs:
- name: Set up VCPKG deps
uses: lukka/run-vcpkg@v11
id: runvcpkg
# if: ${{ runner.os != 'Linux' }}
with:
vcpkgGitCommitId: '${{ matrix.vcpkgCommitId }}'
# Run vcpkg with the command specified by the `runVcpkgFormatString` input.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
artifact_name: target/release/legion-kb-rgb
asset_name: legion-kb-rgb-linux
triplet: x64-linux
vcpkgCommitId: 'f6a5d4e8eb7476b8d7fc12a56dff300c1c986131'
vcpkgCommitId: '335a153de3e398208df4d25eff89d831727bc5da'
- name: windows
os: windows-latest
artifact_name: target/release/legion-kb-rgb.exe
asset_name: legion-kb-rgb-windows
triplet: x64-windows-static
vcpkgCommitId: 'f6a5d4e8eb7476b8d7fc12a56dff300c1c986131'
vcpkgCommitId: '335a153de3e398208df4d25eff89d831727bc5da'

env:
VCPKG_DEFAULT_TRIPLET: ${{ matrix.triplet }}
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update -y
sudo apt install -y libunwind-dev
sudo apt-get install -y libx11-dev nasm libdbus-1-dev libudev-dev libxcb-randr0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libxi-dev libxtst-dev libusb-1.0-0-dev
sudo apt-get install -y libx11-dev nasm libdbus-1-dev libudev-dev libxcb-randr0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libxi-dev libxtst-dev libusb-1.0-0-dev libpango1.0-dev libgtk-3-dev libxdo-dev libappindicator3-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install nasm
elif [ "$RUNNER_OS" == "Windows" ]; then
Expand Down
Loading
Loading