Compare commits
16 Commits
wash-0.37.
...
main
Author | SHA1 | Date |
---|---|---|
|
3fc2b9e2e4 | |
|
e67ffba0ed | |
|
9789f361eb | |
|
a3180b22f3 | |
|
e2ce4ec738 | |
|
c7690fb061 | |
|
4890512667 | |
|
43e4fd6218 | |
|
8c5b27bb44 | |
|
a7253f23ec | |
|
1008f3785d | |
|
eb372abfdf | |
|
86db35415d | |
|
5a664ba164 | |
|
bd5efb2990 | |
|
1a78429c5a |
|
@ -11,7 +11,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-22.04, macos-12]
|
||||
os: [ubuntu-22.04, macos-13]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Set up Homebrew
|
||||
|
@ -36,7 +36,7 @@ jobs:
|
|||
|
||||
- run: brew test-bot --only-tap-syntax
|
||||
|
||||
- run: brew test-bot --only-formulae
|
||||
- run: brew test-bot --only-formulae --skip-checksum-only-audit
|
||||
if: github.event_name == 'pull_request'
|
||||
|
||||
- name: Upload bottles as artifact
|
||||
|
|
|
@ -6,12 +6,12 @@ on:
|
|||
workflow_dispatch:
|
||||
inputs:
|
||||
tag_prefix:
|
||||
description: "Prefix for the release tag to pull from (i.e. wash-cli)"
|
||||
default: "wash-cli"
|
||||
description: 'Prefix for the release tag to pull from (i.e. wash)'
|
||||
default: 'wash'
|
||||
required: false
|
||||
type: string
|
||||
tag_version:
|
||||
description: "Tag to pull"
|
||||
description: 'Tag to pull'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
|
|
|
@ -5,26 +5,27 @@
|
|||
class Wash < Formula
|
||||
desc "WAsmcloud SHell - a comprehensive command-line tool for wasmCloud development"
|
||||
homepage "https://wasmcloud.com/"
|
||||
version "0.36.1"
|
||||
version "0.42.0"
|
||||
license "Apache-2.0"
|
||||
|
||||
bottle do
|
||||
root_url "https://github.com/wasmCloud/homebrew-wasmcloud/releases/download/wash-0.36.1"
|
||||
sha256 cellar: :any_skip_relocation, monterey: "21ace1b31ac2cadaf07902abe1610ca170906e2bd1bf74223c487dd1b8cc41ba"
|
||||
root_url "https://github.com/wasmCloud/homebrew-wasmcloud/releases/download/wash-0.42.0"
|
||||
sha256 cellar: :any_skip_relocation, ventura: "d8287b7fc6d37c2b51d09d7b4ed8378453cb3ac8e4664ed4fc425f3d6c66e9e1"
|
||||
sha256 cellar: :any_skip_relocation, x86_64_linux: "4618a6f060b64c3c8b284ff5c05f1dc7a363f32c23ab6f2d84f0702ee63b7ddb"
|
||||
end
|
||||
|
||||
on_macos do
|
||||
on_intel do
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.36.1/wash-x86_64-apple-darwin"
|
||||
sha256 "e07a3c7ce2d2ec2b16c105bd8e3540fdf14c4d705473b10769ea012e4c3f0ead"
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-x86_64-apple-darwin"
|
||||
sha256 "7fdb4f898035e91940ab442cce9f6bc2380d8aecee6e75c0e988e095c3f51c9f"
|
||||
|
||||
def install
|
||||
bin.install "wash-x86_64-apple-darwin" => "wash"
|
||||
end
|
||||
end
|
||||
on_arm do
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.36.1/wash-aarch64-apple-darwin"
|
||||
sha256 "fbf92aceca54adb8ec6d781196f782e6104b7bd03a40201c69fd9ce7c2074079"
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-aarch64-apple-darwin"
|
||||
sha256 "ab9183194dd29d6eba77692bc017cbc2ea9108b734ddc19d51e74d8bf556aeec"
|
||||
|
||||
def install
|
||||
bin.install "wash-aarch64-apple-darwin" => "wash"
|
||||
|
@ -35,8 +36,8 @@ class Wash < Formula
|
|||
on_linux do
|
||||
on_intel do
|
||||
if Hardware::CPU.is_64_bit?
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.36.1/wash-x86_64-unknown-linux-musl"
|
||||
sha256 "99b574034e25842f52b51fb8478cf73f0a2afeae1c26960ea6ce59c8dc80354a"
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-x86_64-unknown-linux-musl"
|
||||
sha256 "23e44f345ae314549ba04123b86eb63fc37c1026f43b8c08a7c9b618a80cba5c"
|
||||
|
||||
def install
|
||||
bin.install "wash-x86_64-unknown-linux-musl" => "wash"
|
||||
|
@ -45,8 +46,8 @@ class Wash < Formula
|
|||
end
|
||||
on_arm do
|
||||
if Hardware::CPU.is_64_bit?
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.36.1/wash-aarch64-unknown-linux-musl"
|
||||
sha256 "a0e220cf69e985f4ce8db384a0ef94f93ac42490dbefcfc3035668bdb4e3e7ac"
|
||||
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-aarch64-unknown-linux-musl"
|
||||
sha256 "058d59cd5f181ada6de763e82ab935e1ae0db943b6df607cef3cdb647d175029"
|
||||
|
||||
def install
|
||||
bin.install "wash-aarch64-unknown-linux-musl" => "wash"
|
||||
|
|
Loading…
Reference in New Issue