mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
Add go mod Also make the build docs nicer and cleanup the file directory to be in line with most other go projects. This also make it so you can build jsonnet without setting -o on go build.
21 lines
349 B
Bash
Executable File
21 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
[ "$1" = "--skip-go-test" ] || go test ./...
|
|
|
|
c-bindings-tests/run.sh
|
|
|
|
export IMPLEMENTATION=golang
|
|
|
|
go build ./cmd/jsonnet
|
|
|
|
export DISABLE_LIB_TESTS=true
|
|
export DISABLE_FMT_TESTS=true
|
|
export DISABLE_ERROR_TESTS=true
|
|
export JSONNET_BIN="$PWD/jsonnet"
|
|
|
|
git submodule update --recursive cpp-jsonnet
|
|
cd cpp-jsonnet
|
|
exec ./tests.sh
|