1
1
mirror of https://github.com/github/semantic.git synced 2024-11-27 03:09:48 +03:00
semantic/script/protoc
2020-02-12 15:00:28 -08:00

22 lines
582 B
Bash
Executable File

#!/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. See the entrypoint in
# Dockerfile for where the protoc pluggins are configured.
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 \
--jsonpb_haskell_out=./src \
semantic.proto