This change contributes the CI scripts required to build and release the project. Signed-off-by: Ben Hale <bhale@vmware.com>
10 lines
148 B
Bash
Executable File
10 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
[[ -d "${PWD}"/maven && ! -d "${HOME}"/.m2 ]] && ln -s "${PWD}"/maven "${HOME}"/.m2
|
|
|
|
cd source
|
|
|
|
./mvnw test
|