Skip to content

Commit

Permalink
install protoc on before step
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludea committed Jul 6, 2023
1 parent 08614d5 commit d637fb6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ image:
file: .gitpod.Dockerfile

tasks:
- before: |
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip
unzip protoc-21.12-linux-x86_64.zip -d $HOME/.local
export PATH="$PATH:$HOME/.local/bin"
rm protoc-21.12-linux-x86_64.zip
- init: yarn install && cd src-tauri && cargo build --no-default-features
command: "yarn tauri dev"

Expand Down

0 comments on commit d637fb6

Please sign in to comment.