-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prebuilt binaries for darwin don't work #57
Comments
v0.3.2 has the same issue. darwin/arm64 $ ./terraform-graph-beautifier_0.3.2_darwin_arm64.tar.gz/terraform-graph-beautifier
zsh: killed terraform-graph-beautifier --help |
suzuki-shunsuke
added a commit
to aquaproj/aqua-registry
that referenced
this issue
Oct 5, 2023
Hmm. The prebuilt binary for darwin/amd64 works on GitHub Actions
---
name: test terraform-graph-beautifier on darwin
on: pull_request
jobs:
test:
runs-on: macos-latest
steps:
- run: curl -LqO https://github.com/pcasteran/terraform-graph-beautifier/releases/download/v0.3.3/terraform-graph-beautifier_0.3.3_darwin_amd64.tar.gz
- run: tar xvzf terraform-graph-beautifier_0.3.3_darwin_amd64.tar.gz
- run: ls
- run: ./terraform-graph-beautifier --help
|
suzuki-shunsuke
added a commit
to aquaproj/aqua-registry
that referenced
this issue
Oct 5, 2023
* feat: add pcasteran/terraform-graph-beautifier [pcasteran/terraform-graph-beautifier](https://github.com/pcasteran/terraform-graph-beautifier): Terraform graph beautifier * fix(pcasteran/terraform-graph-beautifier): use go_install on darwin - pcasteran/terraform-graph-beautifier#57
Same issue here, MacOS 13.5.1, SentinelOne detects the binary as malicious and mitigates the risk by killing it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I downloaded prebuilt binaries for darwin from GitHub Releases but they don't work on my laptops.
Prebuilt binaries
My laptops
macOS 13.6 Apple M1
I tried both prebuilt binaries for darwin/amd64 and darwin/arm64.
darwin/arm64
darwin/amd64
macOS Ventura 13.5.2 Intel Core i5
darwin/amd64
Prebuilt binary for linux/arm64 works well
On the other hand, the prebuilt binary for linux/arm64 works well on linux/arm64 (lima).
So this is the issue of prebuilt binaries for darwin.
Build a binary on my laptop works well
I tried to build terraform-graph-beautifier from source code by
go install
, then it works well.The text was updated successfully, but these errors were encountered: