From 92e4048e63c59657b2a38a1f246dce10b3d8091c Mon Sep 17 00:00:00 2001 From: Tor Colvin Date: Thu, 10 Oct 2024 12:06:42 -0400 Subject: [PATCH] fix go build --- .github/workflows/service.yml | 2 +- integration-test/service-install-tests.sh | 8 ++++++++ integration-test/service-test.sh | 8 ++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/service.yml b/.github/workflows/service.yml index 6a63630509..0bc8bb8008 100644 --- a/.github/workflows/service.yml +++ b/.github/workflows/service.yml @@ -42,6 +42,6 @@ jobs: with: go-version: 1.22.5 - name: "Build Sync Gateway" - run: mkdir -p ./bin && go build -o ./bin/sync_gateway ./... + run: mkdir -p ./bin && go build -o ./bin ./... - name: "Run test scripts" run: ./integration-test/service-install-tests.sh diff --git a/integration-test/service-install-tests.sh b/integration-test/service-install-tests.sh index 1960296ad6..fbb8226146 100755 --- a/integration-test/service-install-tests.sh +++ b/integration-test/service-install-tests.sh @@ -1,4 +1,12 @@ #!/bin/bash +# Copyright 2024-Present Couchbase, Inc. +# +# Use of this software is governed by the Business Source License included +# in the file licenses/BSL-Couchbase.txt. As of the Change Date specified +# in that file, in accordance with the Business Source License, use of this +# software will be governed by the Apache License, Version 2.0, included in +# the file licenses/APL2.txt. + set -eux -o pipefail diff --git a/integration-test/service-test.sh b/integration-test/service-test.sh index 9fab306e6a..921bd458de 100755 --- a/integration-test/service-test.sh +++ b/integration-test/service-test.sh @@ -1,3 +1,11 @@ +# Copyright 2024-Present Couchbase, Inc. +# +# Use of this software is governed by the Business Source License included +# in the file licenses/BSL-Couchbase.txt. As of the Change Date specified +# in that file, in accordance with the Business Source License, use of this +# software will be governed by the Apache License, Version 2.0, included in +# the file licenses/APL2.txt. + #/bin/sh set -eux -o pipefail