PragmaTwice commented on code in PR #2428:
URL: https://github.com/apache/kvrocks/pull/2428#discussion_r1679507372


##########
.github/workflows/kvrocks.yaml:
##########
@@ -448,6 +451,16 @@ jobs:
           update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 100
           echo "NPROC=$(nproc)" >> $GITHUB_ENV
 
+      - name: Setup Debian
+        if: ${{ startsWith(matrix.image, 'debian') }}
+        run: |
+            apt update
+            apt install -y build-essential wget cmake libtool python3 
libssl-dev python3 python3-pip
+            wget https://golang.org/dl/go1.22.5.linux-amd64.tar.gz
+            tar -C /usr/local -xzf go1.22.5.linux-amd64.tar.gz
+            export PATH=$PATH:/usr/local/go/bin
+            echo "NPROC=$(nproc)" >> $GITHUB_ENV

Review Comment:
   ```suggestion
             apt update
             apt install -y build-essential wget cmake libtool python3 
libssl-dev python3 python3-pip
             wget https://golang.org/dl/go1.22.5.linux-amd64.tar.gz
             tar -C /usr/local -xzf go1.22.5.linux-amd64.tar.gz
             export PATH=$PATH:/usr/local/go/bin
             echo "NPROC=$(nproc)" >> $GITHUB_ENV
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to