File tree 2 files changed +8
-10
lines changed
2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 18
18
branches :
19
19
- main
20
20
pull_request :
21
- paths :
22
- - ' **[Bb]ig[Tt]able**'
23
21
name : bigtable-conformance
24
22
jobs :
25
23
conformance :
41
39
go-version : ' >=1.20.2'
42
40
- run : dotnet --version
43
41
- run : go version
44
- - run : bash apis/Google.Cloud.Bigtable.V2/Google.Cloud.Bigtable.V2.ConformanceTests /bigtable-conformance.sh
42
+ - run : bash .kokoro /bigtable-conformance.sh
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
1
2
# Copyright 2025 Google LLC
2
3
#
3
4
# Licensed under the Apache License, Version 2.0 (the "License");
12
13
# See the License for the specific language governing permissions and
13
14
# limitations under the License.
14
15
15
- #! /bin/bash
16
-
17
16
set -eo pipefail
18
17
19
18
# # Get the directory of the build script
20
- SCRIPT=$( readlink -f " $0 " )
21
- SCRIPT_DIR=$( dirname " $SCRIPT " )
22
-
23
- pushd .
19
+ scriptDir=$( realpath $( dirname " ${BASH_SOURCE[0]} " ) )
24
20
# # cd to the parent directory, i.e. the root of the git repo
25
- cd ${SCRIPT_DIR} /..
21
+ cd ${scriptDir} /..
22
+
23
+ set +e
26
24
27
25
# Build the proxy
26
+ pushd .
27
+ cd apis/Google.Cloud.Bigtable.V2/Google.Cloud.Bigtable.V2.ConformanceTests
28
28
dotnet build
29
29
# Start the proxy in a separate process
30
30
dotnet run &
You can’t perform that action at this time.
0 commit comments