Skip to content
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

steampipe 0.21.0 #149218

Merged
merged 2 commits into from
Oct 3, 2023
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
22 changes: 10 additions & 12 deletions Formula/s/steampipe.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Steampipe < Formula
desc "Use SQL to instantly query your cloud services"
homepage "https://steampipe.io/"
url "https://github.com/turbot/steampipe/archive/refs/tags/v0.20.12.tar.gz"
sha256 "90ec60e161da62e57321eac68fad6ae73613d033620d2f0243662a2e039dd628"
url "https://github.com/turbot/steampipe/archive/refs/tags/v0.21.0.tar.gz"
sha256 "b75a4b6bf676487f7614de0e0eb7585100ddd6cd619f867a44e5948c917f6b65"
license "AGPL-3.0-only"
head "https://github.com/turbot/steampipe.git", branch: "main"

Expand All @@ -12,15 +12,13 @@ class Steampipe < Formula
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_sonoma: "09e784bd7054a6029e3113829619ffd944656859240b8669526c902d739d3ec6"
sha256 cellar: :any_skip_relocation, arm64_ventura: "1ccf9ff2350dae715e1db230defc787b9b6dd57b38e750ebb5bf5d70c0eb8405"
sha256 cellar: :any_skip_relocation, arm64_monterey: "980a716ef805fb78bc40048863ea7233f44efdbb62ebec90963a9ee87ae9da5e"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "99a8150a111ed3cea7f7296640015f993fbe0c8c1944511040b4d0af5d470d02"
sha256 cellar: :any_skip_relocation, sonoma: "94f76383237a416dc065b8d35c08338b50461a1955edcca42ca9ccfb4fa151b0"
sha256 cellar: :any_skip_relocation, ventura: "1d02dd1a75c3bbbef7ab73333c8b140115588c32d316c4eecb21dd616564e7b1"
sha256 cellar: :any_skip_relocation, monterey: "c4301a6e29e28d641d6364ec5156e5e4da9c5f67c6c1eb96fcd99bd579968ef9"
sha256 cellar: :any_skip_relocation, big_sur: "0def630df2da4105960e48b860c0ae469ebfcd1e6c81dc8cb347f0a2e780f5d3"
sha256 cellar: :any_skip_relocation, x86_64_linux: "de2b68a39a38a54a7e3a5b6df3b4102a1bfd7c73826aae4791d2ea6f5e63328e"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "c1b91a4cc3032c8a345a5044b8640017ce743b66c0ffc104431f59d35ce32d0b"
sha256 cellar: :any_skip_relocation, arm64_ventura: "21e548f9464523b127da3703c09e666cd75a73879de9394641fdc2d943dd6a08"
sha256 cellar: :any_skip_relocation, arm64_monterey: "6c6c9b11e669c8d856f28eb05fddef334c50c7e7c1df7cdf1fb4aa79780309cc"
sha256 cellar: :any_skip_relocation, sonoma: "f94f4cd283a7c7dad8eb5225120c3f5b56828e7137e9198f7ac0b1e82140a099"
sha256 cellar: :any_skip_relocation, ventura: "58c4a1d1689b04cf913ec68ab289647e38aaa4bb31e705f54e76e32a800828b2"
sha256 cellar: :any_skip_relocation, monterey: "35c951cb7ebb9a9b9c771bc12fa9617c23495a6c6492487793e759ebe91a0eed"
sha256 cellar: :any_skip_relocation, x86_64_linux: "6fdf5ccadc15eb2ff357525407d2343948942d4290e92f0e3d87b7d5126db005"
end

depends_on "go" => :build
Expand All @@ -34,7 +32,7 @@ def install
test do
if OS.mac?
output = shell_output(bin/"steampipe service status 2>&1", 255)
assert_match "Error: could not create installation directory", output
assert_match "Error: could not create sample workspace", output
else # Linux
output = shell_output(bin/"steampipe service status 2>&1")
assert_match "Steampipe service is not installed", output
Expand Down
Loading