We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c212033 commit dff3ad6Copy full SHA for dff3ad6
.github/workflows/wasm-sdk-build.yml
@@ -44,6 +44,19 @@ jobs:
44
with:
45
targets: wasm32-unknown-unknown
46
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
57
+ sudo apt update -qq
58
+ sudo apt install -qq --yes clang llvm
59
60
- name: Cache cargo dependencies
61
uses: actions/cache@v4
62
0 commit comments