From 7467c780f22698b47321bdc4abbbda71e63c8c45 Mon Sep 17 00:00:00 2001 From: Sky Date: Sat, 16 Dec 2023 18:44:27 -0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90Build=E3=80=91Remove=20unneeded=20depe?= =?UTF-8?q?ndencies.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy_linux.yml | 2 +- .github/workflows/deploy_win.yml | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy_linux.yml b/.github/workflows/deploy_linux.yml index 021cb6303..cb9d73788 100644 --- a/.github/workflows/deploy_linux.yml +++ b/.github/workflows/deploy_linux.yml @@ -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 diff --git a/.github/workflows/deploy_win.yml b/.github/workflows/deploy_win.yml index b1207c368..690c91b26 100644 --- a/.github/workflows/deploy_win.yml +++ b/.github/workflows/deploy_win.yml @@ -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 🚀