mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 06:47:16 +02:00
* Minimal C bindings * Fix version reporting in C bindings * Apply suggestions about C bindings implementation * Rename compat/ -> c-bindings/ * Add comment about indexing VMs in C bindings
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd "$DIR"
|
|
|
|
./build.sh
|
|
echo "Running tests for C bindings"
|
|
./compat_test.py
|