mirror of
https://github.com/github/semantic.git
synced 2024-12-01 17:59:10 +03:00
20 lines
480 B
Plaintext
20 lines
480 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#/ Usage: script/protoc
|
||
|
#/
|
||
|
#/ Generate code from .proto files
|
||
|
|
||
|
set -ex
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
docker build -t semantic-protoc --target protoc .
|
||
|
|
||
|
PARENT_DIR=$(dirname $(pwd))
|
||
|
|
||
|
export PROJECT="github.com/github/semantic"
|
||
|
|
||
|
# Generate Haskell for semantic's protobuf types
|
||
|
docker run --rm --user $(id -u):$(id -g) -v $(pwd):/go/src/$PROJECT -w /go/src/$PROJECT \
|
||
|
semantic-protoc \
|
||
|
--proto_path=proto --haskell_out=src/Semantic/Proto \
|
||
|
semantic.proto
|