Skip to content

Commit

Permalink
fix go build
Browse files Browse the repository at this point in the history
  • Loading branch information
torcolvin committed Oct 10, 2024
1 parent cc28b70 commit 92e4048
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 8 additions & 0 deletions integration-test/service-install-tests.sh
Original file line number Diff line number Diff line change
@@ -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

Expand Down
8 changes: 8 additions & 0 deletions integration-test/service-test.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 92e4048

Please sign in to comment.