Skip to content

Commit

Permalink
fix: exclude windows/arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke committed Jun 18, 2022
1 parent 75b1b32 commit be44713
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pkgs/anchore/grype/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ packages:
- type: github_release
repo_owner: anchore
repo_name: grype
asset: "grype_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}"
description: A vulnerability scanner for container images and filesystems
supported_if: not (GOOS == "windows" and GOARCH == "arm64")
asset: "grype_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}"
format: tar.gz
version_constraint: 'semver(">= 0.33.0")'
format_overrides:
Expand Down
3 changes: 2 additions & 1 deletion pkgs/earthly/earthly/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ packages:
- type: github_release
repo_owner: earthly
repo_name: earthly
asset: "earthly-{{.OS}}-{{.Arch}}"
description: Repeatable builds
supported_if: not (GOOS == "windows" and GOARCH == "arm64")
asset: "earthly-{{.OS}}-{{.Arch}}"
2 changes: 1 addition & 1 deletion pkgs/scaleway/scaleway-cli/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ packages:
version_overrides:
- version_constraint: 'semver("< 2.5.1")'
asset: "scw-{{trimV .Version}}-{{.OS}}-{{.Arch}}"
supported_if: not (GOOS == "linux" and GOARCH == "arm64")
supported_if: GOOS == "darwin" or GOARCH == "arm64"
replacements:
amd64: x86_64

0 comments on commit be44713

Please sign in to comment.