Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ jobs:
test-bot:
strategy:
matrix:
# os: [ubuntu-22.04, macos-12]
os: [macos-12]
os: [macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Homebrew
Expand Down
4 changes: 2 additions & 2 deletions Formula/render.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
class Render < Formula
version = "0.8.6"
version = "0.8.7"
tag = "v#{version}"
desc "Command-line interface for Render (Beta version)"
homepage "https://github.com/render-oss/cli"
url "https://github.com/render-oss/cli.git",
tag: tag,
revision: "3be9b1313b93e372f1e10340f936fa1c484d0b87"
revision: "dd2a85c107764fa347e636c5dd27808b06ce9ad4"
license "Apache-2.0"
depends_on "go" => :build

Expand All @@ -13,7 +13,7 @@
system "go", "build", *std_go_args(ldflags: "-s -w -X 'github.com/renderinc/cli/pkg/cfg.Version=#{version}'")[1..]
end

test do

Check warning on line 16 in Formula/render.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

`brew test --verbose render-oss/render/render` failed on macOS Sonoma (14) on Apple Silicon!

/opt/homebrew/Library/Homebrew/test.rb:54:in `<main>'
assert_match "Usage:", shell_output("#{bin}/render --help")
assert_match "render version" + version, shell_output("#{bin}/render --version")
end
Expand Down
Loading