Skip to content

Commit

Permalink
fix: remove windows arm64 support due to lacking env
Browse files Browse the repository at this point in the history
  • Loading branch information
innobead committed Jan 2, 2025
1 parent 8a04830 commit 9796388
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 69 deletions.
5 changes: 1 addition & 4 deletions doc/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,13 @@
huber Huber 📦, Package Install Manager for GitHub repos https://github.com/innobead/huber
hugo The world’s fastest framework for building websites. https://github.com/gohugoio/hugo
hyperfine A command-line benchmarking tool https://github.com/sharkdp/hyperfine
ignite Ignite a Firecracker microVM https://github.com/weaveworks/ignite
img Standalone, daemon-less, unprivileged Dockerfile and OCI compatible container image builder. https://github.com/genuinetools/img
istio Connect, secure, control, and observe services. https://github.com/istio/istio
jiq jid on jq - interactive JSON query tool using jq expressions https://github.com/fiatjaf/jiq
jless jless is a command-line JSON viewer designed for reading, exploring, and searching through JSON data... https://github.com/PaulJuliusMartinez/jless
jq Command-line JSON processor https://github.com/stedolan/jq
just 🤖 Just a command runner https://github.com/casey/just
k0s k0s - The Zero Friction Kubernetes https://github.com/k0sproject/k0s
k3ai K3ai is a lightweight, fully automated, AI infrastructure-in-a-box solution that allows anyone to ex... https://github.com/kf5i/k3ai
k3d Little helper to run CNCF's k3s in Docker https://github.com/rancher/k3d
k3s Lightweight Kubernetes https://github.com/rancher/k3s
k3sup bootstrap K3s over SSH in < 60s 🚀 https://github.com/alexellis/k3sup
Expand All @@ -76,7 +74,6 @@
kotlin The Kotlin Programming Language. https://github.com/JetBrains/kotlin
kpt Automate Kubernetes Configuration Editing https://github.com/GoogleContainerTools/kpt
krew 📦 Find and install kubectl plugins https://github.com/kubernetes-sigs/krew
krustlet Kubernetes Rust Kubelet https://github.com/deislabs/krustlet
kube-bench Checks whether Kubernetes is deployed according to security best practices as defined in the CIS Kub... https://github.com/aquasecurity/kube-bench
kubectl Production-Grade Container Scheduling and Management https://github.com/kubernetes/kubernetes
kubefire KubeFire 🔥, creates and manages Kubernetes Clusters using Firecracker microVMs https://github.com/innobead/kubefire
Expand All @@ -101,9 +98,9 @@
nushell A new type of shell https://github.com/nushell/nushell
octant Highly extensible platform for developers to better understand the complexity of Kubernetes clusters... https://github.com/vmware-tanzu/octant
okteto Develop your applications directly in your Kubernetes Cluster https://github.com/okteto/okteto
ollama Get up and running with Llama 3.3, Mistral, Gemma 2, and other large language models. https://github.com/ollama/ollama
onefetch Command-line Git information tool https://github.com/o2sh/onefetch
opa Open Policy Agent (OPA) is an open source, general-purpose policy engine. https://github.com/open-policy-agent/opa
opni Multi Cluster Observability with AIOps https://github.com/rancher/opni
oras OCI registry client - managing content like artifacts, images, packages https://github.com/deislabs/oras
pack CLI for building apps using Cloud Native Buildpacks https://github.com/buildpacks/pack
packer Packer is a tool for creating identical machine images for multiple platforms from a single source c... https://github.com/hashicorp/packer
Expand Down
4 changes: 0 additions & 4 deletions generated/packages/buf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,4 @@ targets:
artifact_templates:
- '{version}/buf-Windows-x86_64'
- '{version}/protoc-gen-buf-breaking-Windows-x86_64'
- WindowsArm64:
artifact_templates:
- '{version}/buf-Windows-arm64'
- '{version}/protoc-gen-buf-breaking-Windows-arm64'
detail: null
3 changes: 0 additions & 3 deletions generated/packages/ollama.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,4 @@ targets:
- WindowsAmd64:
artifact_templates:
- ollama-windows-amd64.zip
- WindowsArm64:
artifact_templates:
- ollama-windows-arm64.zip
detail: null
3 changes: 0 additions & 3 deletions generated/packages/saml2aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,4 @@ targets:
- WindowsAmd64:
artifact_templates:
- saml2aws_{version}_windows_amd64.zip
- WindowsArm64:
artifact_templates:
- saml2aws_{version}_windows_arm64.zip
detail: null
3 changes: 0 additions & 3 deletions generated/packages/stern.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,4 @@ targets:
- WindowsAmd64:
artifact_templates:
- stern_{version}_windows_amd64.tar.gz
- WindowsArm64:
artifact_templates:
- stern_{version}_windows_arm64.tar.gz
detail: null
9 changes: 0 additions & 9 deletions huber-common/src/model/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ pub enum PackageTargetType {
MacOSAmd64(PackageManagement),
MacOSArm64(PackageManagement),
WindowsAmd64(PackageManagement),
WindowsArm64(PackageManagement),
Default(PackageManagement),
}

Expand Down Expand Up @@ -233,14 +232,6 @@ impl Package {
}
}),

"aarch64" => self.targets.iter().find_map(|it| {
if let PackageTargetType::WindowsArm64(m) = it {
Some(m.clone())
} else {
default_pkg_mgmt.clone()
}
}),

_ => None,
},

Expand Down
13 changes: 0 additions & 13 deletions huber-generator/src/pkg/buf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,19 +75,6 @@ pub fn release() -> Package {
tag_version_regex_template: None,
scan_dirs: None,
}),
PackageTargetType::WindowsArm64(PackageManagement {
artifact_templates: vec![
"{version}/buf-Windows-arm64".to_string(),
"{version}/protoc-gen-buf-breaking-Windows-arm64".to_string(),
],
executable_templates: None,
executable_mappings: None,
install_commands: None,
uninstall_commands: None,
upgrade_commands: None,
tag_version_regex_template: None,
scan_dirs: None,
}),
],
version: None,
description: None,
Expand Down
10 changes: 0 additions & 10 deletions huber-generator/src/pkg/ollama.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,6 @@ pub fn release() -> Package {
tag_version_regex_template: None,
scan_dirs: None,
}),
PackageTargetType::WindowsArm64(PackageManagement {
artifact_templates: vec!["ollama-windows-arm64.zip".to_string()],
executable_templates: None,
executable_mappings: None,
install_commands: None,
uninstall_commands: None,
upgrade_commands: None,
tag_version_regex_template: None,
scan_dirs: None,
}),
],
version: None,
description: None,
Expand Down
10 changes: 0 additions & 10 deletions huber-generator/src/pkg/saml2aws.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,6 @@ pub fn release() -> Package {
tag_version_regex_template: None,
scan_dirs: None,
}),
PackageTargetType::WindowsArm64(PackageManagement {
artifact_templates: vec!["saml2aws_{version}_windows_arm64.zip".to_string()],
executable_templates: None,
executable_mappings: None,
install_commands: None,
uninstall_commands: None,
upgrade_commands: None,
tag_version_regex_template: None,
scan_dirs: None,
}),
],
version: None,
description: None,
Expand Down
10 changes: 0 additions & 10 deletions huber-generator/src/pkg/stern.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,6 @@ pub fn release() -> Package {
tag_version_regex_template: None,
scan_dirs: None,
}),
PackageTargetType::WindowsArm64(PackageManagement {
artifact_templates: vec!["stern_{version}_windows_arm64.tar.gz".to_string()],
executable_templates: None,
executable_mappings: None,
install_commands: None,
uninstall_commands: None,
upgrade_commands: None,
tag_version_regex_template: None,
scan_dirs: None,
}),
],
version: None,
description: None,
Expand Down

0 comments on commit 9796388

Please sign in to comment.