Skip to content

Commit

Permalink
test(bigtable): Correcting checkout path
Browse files Browse the repository at this point in the history
  • Loading branch information
bhshkh committed Oct 11, 2023
1 parent 3d894dd commit 074ca5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/conformance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: google-cloud-go
- uses: actions/checkout@v3
with:
repository: googleapis/cloud-bigtable-clients-test
Expand All @@ -39,6 +37,6 @@ jobs:
with:
go-version: '>=1.20.2'
- run: go install github.com/jstemmer/go-junit-report/v2@latest
- run: chmod +x ./google-cloud-go/bigtable/conformance_test.sh
- run: chmod +x ./bigtable/conformance_test.sh
- run: go version
- run: ./google-cloud-go/bigtable/conformance_test.sh
- run: ./bigtable/conformance_test.sh
4 changes: 2 additions & 2 deletions bigtable/conformance_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ set -eo pipefail
set -x

## cd to the parent directory, i.e. the root of the git repo
cd $(dirname $0)/../..
cd $(dirname $0)/..

rootDir=$(pwd)
clientLibHome=$rootDir/google-cloud-go/bigtable
clientLibHome=$rootDir/bigtable
testProxyHome=$clientLibHome/internal/testproxy
testProxyPort=9999
conformanceTestsHome=$rootDir/cloud-bigtable-clients-test/tests
Expand Down

0 comments on commit 074ca5a

Please sign in to comment.