Skip to content

Commit

Permalink
compiling each file seperatly
Browse files Browse the repository at this point in the history
  • Loading branch information
AlonLStarkWare committed Dec 2, 2024
1 parent c051a99 commit 8ae3ab5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/starknet_p2p_specs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ jobs:
run: |
echo "Using the following .proto files from previous step:"
echo "${{ steps.find-protos.outputs.proto_files }}"
protoc --rust_out=experimental-codegen=enabled,kernel=upb:$(mktemp -d) ${{ steps.find-protos.outputs.proto_files }}
# for file in ${{ steps.find-protos.outputs.proto_files }}; do
# echo "Processing $file"
# protoc --rust_out=experimental-codegen=enabled,kernel=upb:$(mktemp -d) file
# done
for file in ${{ steps.find-protos.outputs.proto_files }}; do
echo "Compiling $file"
protoc --rust_out=experimental-codegen=enabled,kernel=upb:$(mktemp -d) file
done
# protoc --rust_out=experimental-codegen=enabled,kernel=upb:$(mktemp -d) ${{ steps.find-protos.outputs.proto_files }}

# - name: Validate .proto files for Rust compatibility
# run: |
Expand Down

0 comments on commit 8ae3ab5

Please sign in to comment.