Testing ci #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Starknet-P2p-Specs-CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '*' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- auto_merge_enabled | |
- edited | |
env: | |
PROTOC_VERSION: v25.1 | |
jobs: | |
compile-protos: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: Noelware/[email protected] | |
with: | |
version: ${{env.PROTOC_VERSION}} | |
# - name: Install protobuf compiler (protoc) | |
# run: | | |
# sudo apt-get update | |
# sudo apt-get install -y protobuf-compiler | |
- name: protoc version | |
run: protoc --version | |
- name: Validate .proto files for Rust compatibility | |
run: | | |
protoc --rust_out=experimental-codegen=enabled,kernel=upb:$(mktemp -d) ./p2p/proto/*.proto | |
protoc --rust_out=experimental-codegen=enabled,kernel=upb:$(mktemp -d) ./p2p/proto/**/*.proto | |
# - name: Validate .proto files for Java compatibility | |
# run: | | |
# protoc --java_out=$(mktemp -d) ./p2p/proto/*.proto | |
# protoc --java_out=$(mktemp -d) ./p2p/proto/**/*.proto | |
- name: Validate .proto files for Python compatibility | |
run: | | |
protoc --python_out=$(mktemp -d) ./p2p/proto/*.proto | |
protoc --python_out=$(mktemp -d) ./p2p/proto/**/*.proto | |
- name: Validate .proto files for C++ compatibility | |
run: | | |
protoc --cpp_out=$(mktemp -d) ./p2p/proto/*.proto | |
protoc --cpp_out=$(mktemp -d) ./p2p/proto/**/*.proto | |
- name: Install protoc-gen-go | |
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest | |
- name: go env GOPATH | |
run: go env GOPATH | |
- name: export GOPATH | |
run: export PATH=$PATH:$(go env GOPATH)/bin | |
- name: which protoc-gen-go | |
run: which protoc-gen-go | |
- name: Validate .proto files for Go compatibility | |
run: | | |
protoc --go_out=$(mktemp -d) ./p2p/proto/*.proto | |
protoc --go_out=$(mktemp -d) ./p2p/proto/**/*.proto | |
- name: Success Message | |
run: echo "All proto compilations passed!" |