Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Palade <victor@cloudflavor.io>
  • Loading branch information
PI-Victor committed Jul 9, 2024
1 parent fbb1660 commit b564e09
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,11 @@ jobs:
components: rustfmt, clippy
- name: Install protoc
run: |
wget https://github.com/protocolbuffers/protobuf/releases/download/v27.2/protoc-27.2-linux-x86_64.zip
unzip protoc-27.2-linux-x86_64.zip
mv bin/protoc /usr/local/bin/
mv include /usr/include
rm -rf protoc-27.2-linux-x86_64.zip
protoc-27.2-linux-x86_64
ls -lrta
PROTOC_VERSION=3.27.2
PROTOC_ZIP=protoc-$PROTOC_VERSION-linux-x86_64.zip
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOC_VERSION/$PROTOC_ZIP
sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
sudo unzip -o $PROTOC_ZIP -d /usr/local 'include/*'
- name: Run clippy
run: cargo clippy
- name: Build tomis
Expand Down

0 comments on commit b564e09

Please sign in to comment.