Skip to content

Commit

Permalink
only update ubuntu version for building rust image
Browse files Browse the repository at this point in the history
Signed-off-by: Yashash H L <[email protected]>
  • Loading branch information
yhl25 committed Sep 15, 2024
1 parent 529a7e9 commit 899453b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
- run: git diff --exit-code

build-rust-amd64:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./rust
Expand All @@ -167,8 +167,8 @@ jobs:
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Install dependencies
run: sudo apt-get install -y protobuf-compiler
- name: Print Protoc version
run: protoc --version
- name: Build binary
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdkclient/grpc/grpc_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func ConnectToServer(udsSockAddr string, serverInfo *serverinfo.ServerInfo, maxM
}

if err != nil {
return nil, fmt.Errorf("failed to execute grpc.Dial(%q): %w", sockAddr, err)
return nil, fmt.Errorf("failed to execute grpc.NewClient(%q): %w", sockAddr, err)
}

return conn, nil
Expand Down

0 comments on commit 899453b

Please sign in to comment.