layout | title | section | sort_order |
---|---|---|---|
docs |
Development |
references |
100 |
OPA is written in the Go programming language.
If you are not familiar with Go we recommend you read through the How to Write Go Code article to familiarize yourself with the standard Go development environment.
Requirements:
- Git
- GitHub account (if you are contributing)
- Go (version 1.10 is supported though older versiosn are likely to work)
- GNU Make
After cloning the repository, just run make
. This will:
- Install required dependencies, e.g., the parser-generator ("pigeon").
- Build the OPA binary.
- Run all of the tests.
- Run all of the static analysis checks.
If the build was successful, a binary will be produced in the top directory (opa_<OS>_<ARCH>
).
Verify the build was successful with ./opa_<OS>_<ARCH> run
.
You can re-build the project with make build
, execute all of the tests
with make test
, and execute all of the performance benchmarks with make perf
.
The static analysis checks (e.g., go fmt
, golint
, go vet
) can be run
with make check
.
-
Go to https://github.com/open-policy-agent/opa and fork the repository into your account by clicking the "Fork" button.
-
Clone the fork to your local machine.
cd $GOPATH mkdir -p src/github.com/open-policy-agent cd src/github.com/open-policy-agent git clone [email protected]/<GITHUB USERNAME>/opa.git opa cd opa git remote add upstream https://github.com/open-policy-agent/opa.git
-
Create a branch for your changes.
git checkout -b somefeature
-
Update your local branch with upstream.
git fetch upstream git rebase upstream/master
-
Develop your changes and regularly update your local branch against upstream.
- Be sure to run
make check
before submitting your pull request. You may need to rungo fmt
on your code to make it comply with standard Go style.
- Be sure to run
-
Commit changes and push to your fork.
git commit -s git push origin somefeature
-
Submit a Pull Request via https://github.com/\/opa. You should be prompted to with a "Compare and Pull Request" button that mentions your branch.
-
Once your Pull Request has been reviewed and signed off please squash your commits. If you have a specific reason to leave multiple commits in the Pull Request, please mention it in the discussion.
If you are not familiar with squashing commits, see the following blog post for a good overview.
Glide is a command line tool used for dependency management. You must have Glide installed in order to add new dependencies or update existing dependencies. If you are not changing dependencies you do not have to install Glide, all of the dependencies are contained in the vendor directory.
Update glide.yaml
if you are adding a new dependency and then run:
glide update --strip-vendor
This assumes you have Glide v0.12 or newer installed.
After updating dependencies, be sure to check if the parser-generator ("pigeon") was updated. If it was, re-generate the parser and commit the changes.
If you need to modify the Rego syntax you must update ast/rego.peg. Both make build
and make test
will re-generate the parser but if you want to test the
parser generation explicitly you can run make generate
.
If you are modifying the Rego syntax you must commit the parser source file
(ast/parser.go) that make generate
produces when you are done. The generated
code is kept in the repository so that commands such as go get
work.