From 3747f49be629d3332f434aca2ff2b56f2ca66f9f Mon Sep 17 00:00:00 2001 From: ktechmidas Date: Wed, 16 Oct 2024 17:27:34 +0300 Subject: [PATCH] remove windows --- .github/workflows/release.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0181984..bc08bbc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,21 +81,6 @@ jobs: run: curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-osx-aarch_64.zip && sudo unzip -o protoc-25.2-osx-aarch_64.zip -d /usr/local bin/protoc && sudo unzip -o protoc-25.2-osx-aarch_64.zip -d /usr/local 'include/*' && rm -f protoc-25.2-osx-aarch_64.zip env: PROTOC: /usr/local/bin/protoc - - - name: Install CMake (Windows) - if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }} - run: | - choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' - shell: cmd - - - name: Install protoc (Windows x64) - if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }} - run: | - curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-win64.zip - mkdir protoc - powershell -Command "Expand-Archive -Path protoc-25.2-win64.zip -DestinationPath protoc" - setx PROTOC "%cd%\protoc\bin\protoc.exe" - shell: bash - name: Build project run: cargo build --release --target ${{ matrix.target }}