Skip to content

Commit dff3ad6

Browse files
quantumquantum
authored andcommitted
fix
1 parent c212033 commit dff3ad6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/wasm-sdk-build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,19 @@ jobs:
4444
with:
4545
targets: wasm32-unknown-unknown
4646

47+
- name: Install protoc
48+
run: |
49+
curl -Lo /tmp/protoc.zip \
50+
"https://github.com/protocolbuffers/protobuf/releases/download/v27.3/protoc-27.3-linux-x86_64.zip"
51+
unzip -o /tmp/protoc.zip -d ${HOME}/.local
52+
echo "${HOME}/.local/bin" >> $GITHUB_PATH
53+
export PATH="${PATH}:${HOME}/.local/bin"
54+
55+
- name: Install clang
56+
run: |
57+
sudo apt update -qq
58+
sudo apt install -qq --yes clang llvm
59+
4760
- name: Cache cargo dependencies
4861
uses: actions/cache@v4
4962
with:

0 commit comments

Comments
 (0)