Skip to content

Commit

Permalink
Polish minor mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-congo committed Feb 9, 2024
1 parent 920c051 commit a9564f6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: '^1.13.1'
go-version: ${{ matrix.go }}

- name: Install shared software dependencies
uses: ./.github/workflows/install-shared-dependencies
Expand Down Expand Up @@ -143,13 +143,10 @@ jobs:
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
- name: Build rust part
working-directory: go
run: cargo build --release

- name: Build go part
working-directory: go
- name: Build client
working-directory: ./go
run: |
cargo build --release
go mod edit -go=${{ matrix.go }}
make build
Expand Down
2 changes: 1 addition & 1 deletion go/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
lib.h
*.pb.go

reports
reports
12 changes: 6 additions & 6 deletions go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ build-glide-client:
generate-protobuf:
mkdir -p protobuf
protoc --proto_path=../glide-core/src/protobuf \
--go_opt=Mconnection_request.proto=github.com/aws/glide-for-redis/go/protobuf \
--go_opt=Mredis_request.proto=github.com/aws/glide-for-redis/go/protobuf \
--go_opt=Mresponse.proto=github.com/aws/glide-for-redis/go/protobuf \
--go_out=./protobuf \
--go_opt=paths=source_relative \
../glide-core/src/protobuf/*.proto
--go_opt=Mconnection_request.proto=github.com/aws/glide-for-redis/go/protobuf \
--go_opt=Mredis_request.proto=github.com/aws/glide-for-redis/go/protobuf \
--go_opt=Mresponse.proto=github.com/aws/glide-for-redis/go/protobuf \
--go_out=./protobuf \
--go_opt=paths=source_relative \
../glide-core/src/protobuf/*.proto

lint:
go vet ./...
Expand Down
2 changes: 1 addition & 1 deletion go/glide.go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package _go
package glide

0 comments on commit a9564f6

Please sign in to comment.