guyuqi edited a comment on pull request #12540:
URL: https://github.com/apache/arrow/pull/12540#issuecomment-1068873325


   Arm64 CI is triggered by travis. Travis will pull the docker image: 
`arm64v8/golang:1.16-bullseye` which is not built by ourselves. We could not 
modify docker file to install `staticcheck`.
   For this workaround, I added `ARCH ` detect:
   ```
   # Arm64 CI is triggered by travis and run in arm64v8/golang:1.16-bullseye
   if [ "aarch64" == "$ARCH" ]; then
    # Install `staticcheck`
     GO111MODULE=on go install honnef.co/go/tools/cmd/staticcheck@latest
   fi
   
   ```
   WDYT?  :-)
   
   
   
   


-- 
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