Skip to content

Commit

Permalink
【Build】Remove unneeded dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
skylersaleh committed Dec 17, 2023
1 parent 29b441f commit 7467c78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev
sudo apt-get install -y libgl1-mesa-dev libegl1-mesa-dev libasound2-dev libcurl4-nss-dev
sudo apt-get install -y libgl1-mesa-dev libegl1-mesa-dev libasound2-dev
- name: Configure & Build 🔧
run: |
mkdir build
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/deploy_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,11 @@ jobs:
- name: Get latest CMake and ninja
# Using 'latest' branch, the most recent CMake and ninja are installed.
uses: lukka/get-cmake@latest
- name: Install dependencies
run: |
vcpkg install curl:x64-windows
vcpkg integrate install
- name: Build 🔧
run: |
mkdir build
cd build
cmake -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -A x64 -DCMAKE_SYSTEM_VERSION=10.0.19041.0 ..
cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_SYSTEM_VERSION=10.0.19041.0 ..
cmake --build . --config Release
- name: GH Release 🚀
Expand Down

0 comments on commit 7467c78

Please sign in to comment.