Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/hyperexecute-cli-run-tests-on-hyperexecute-grid.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@ To ensure the binary you’ve downloaded is genuine and has not been tampered wi

<Tabs className="docs__val">

<TabItem value="zsh" label="Linux" default>
You can verify the code signature of the binary using the `openssh` command. Download the [Signature](https://downloads.lambdatest.com/hyperexecute/linux/hyperexecute.sig) and [Public Key](https://downloads.lambdatest.com/hyperexecute/linux/public_key.pem), keep it with your CLI, and paste the location in the below command:

```bash
openssl dgst -sha256 -verify <PUBLIC_KEY_PATH> -signature <SIGNATURE_PATH> <CLI_BINARY_PATH>
```

<img loading="lazy" src={require('../assets/images/hyperexecute/cli/linux-verification.png').default} alt="Image" className="doc_img"/>

</TabItem>

<TabItem value="bash" label="macOS" default>
You can verify the code signature of the binary using the `codesign` command. In your terminal run the following command:

Expand Down
Loading