Skip to content

Commit f18fea9

Browse files
committed
fix: release CI
1 parent 01aeee2 commit f18fea9

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
matrix:
1616
target:
1717
- x86_64-unknown-linux-gnu
18-
# - x86_64-pc-windows-gnu
1918
# - x86_64-apple-darwin
2019
- aarch64-apple-darwin
2120
name:
@@ -25,8 +24,6 @@ jobs:
2524
include:
2625
- target: x86_64-unknown-linux-gnu
2726
os: ubuntu-latest
28-
# - target: x86_64-pc-windows-gnu
29-
# os: windows-latest
3027
# - target: x86_64-apple-darwin
3128
# os: macos-latest
3229
- target: aarch64-apple-darwin
@@ -65,13 +62,13 @@ jobs:
6562
${{ runner.os }}-cargo-build-${{ matrix.target }}-
6663
${{ runner.os }}-cargo-build-
6764
68-
- name: Install GNU toolchain (Windows)
69-
if: matrix.target == 'x86_64-pc-windows-gnu'
70-
uses: msys2/setup-msys2@v2
71-
with:
72-
msystem: MINGW64
73-
update: true
74-
install: mingw-w64-x86_64-gcc
65+
- name: Install protoc (Ubuntu)
66+
if: runner.os == 'Linux'
67+
run: sudo apt-get install protobuf-compiler
68+
69+
- name: Install protoc (macOS)
70+
if: runner.os == 'macOS'
71+
run: brew install protobuf
7572

7673
- name: Set up Rust
7774
uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)