Files
Jay Brown 174644b63c Merged in jb/openapi (pull request #22)
add openapi infra

* add openapi infra

Includes generated stubs and all deps

* generatetolocation

* basesetupoffunctionsandclient

* round1controllertests

* passintegrationtests

* cleanupfromfullsuite

* storedjson

* fixjsonyaml

* fixtests


Approved-by: Michael McGuinness
2025-01-15 19:45:51 +00:00

20 lines
354 B
Bash

#!/bin/sh
set -e
MY_DIR=$(dirname "$0")
cd "${MY_DIR}"
mkdir -p "artifacts"
echo "Linux"
GOARCH=amd64 GOOS=linux go build -o "artifacts/jsonmerge" ./cmd
echo "Windows"
GOARCH=amd64 GOOS=windows go build -o "artifacts/jsonmerge.exe" ./cmd
echo "Mac(darwin)"
GOARCH=amd64 GOOS=darwin go build -o "artifacts/jsonmerge_darwin" ./cmd
echo "Build done"