Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 798 Bytes

BUILD.md

File metadata and controls

28 lines (19 loc) · 798 Bytes

Build

Maven

mvn clean install

To re-generate the snapshots add

-P update-snapshots

If tests fail due to Flink memory or buffer issues, try uncommenting the configuration line in ExecutionEnvironmentFactory.java.

Build Docker

Check out the .github/workflows/docker.yml for build steps.

TroubleShooting

If you are trying to run the build or individual tests on Mac and get the error that TestContainers could not find a docker environment even though you are running Docker, then execute the following command:

sudo ln -s $HOME/.docker/run/docker.sock /var/run/docker.sock

See StackOverflow for more information.