Skip to content

Commit 952c305

Browse files
committed
install grpc with vcpkg
1 parent 674e729 commit 952c305

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,17 @@ jobs:
7373
shell: powershell
7474
run: conda install -c conda-forge xtensor
7575

76-
- name: Install gRPC
77-
uses: eWaterCycle/setup-grpc@v5
78-
with:
79-
grpc-version: 1.71.0
76+
- name: Install grpc
77+
run: |
78+
git clone https://github.com/microsoft/vcpkg.git
79+
cd vcpkg; .\boostrap-vcpkg.bat
80+
.\vcpkg integrate install
81+
.\vcpkg install grpc
82+
83+
#- name: Install gRPC
84+
#uses: eWaterCycle/setup-grpc@v5
85+
#with:
86+
#grpc-version: 1.71.0
8087

8188
- name: Install dependencies
8289
uses: crazy-max/ghaction-chocolatey@v3

0 commit comments

Comments
 (0)