Skip to content

Commit

Permalink
Release Captain 1.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekthompson committed Aug 15, 2024
1 parent e22670d commit ef1e9a0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/captain-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
matrix:
include:
- name: captain
version: "1.13.1"
version: "1.13.3"
os: macos-12 # intel
- name: captain
version: "1.13.1"
version: "1.13.3"
os: macos-14 # arm

- name: captain@1
version: "1.13.1"
version: "1.13.3"
os: macos-12 # intel
- name: captain@1
version: "1.13.1"
version: "1.13.3"
os: macos-14 # arm

steps:
Expand All @@ -43,9 +43,9 @@ jobs:
matrix:
include:
- name: captain
version: "1.13.1"
version: "1.13.3"
- name: captain@1
version: "1.13.1"
version: "1.13.3"
steps:
- name: Install homebrew
uses: Homebrew/actions/setup-homebrew@5caa94335a28d8fdf5a478ae8586f2da40a0a989
Expand Down
8 changes: 4 additions & 4 deletions Formula/captain.rb
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
class Captain < Formula
desc "Captain can detect and quarantine flaky tests, automatically retry failed tests, partition files for parallel execution, and more"
homepage "https://www.rwx.com/captain"
version "1.13.1"
version "1.13.3"

if OS.mac?
if Hardware::CPU.intel?
url "https://releases.captain.build/v#{version}/darwin/x86_64/captain", user_agent: :fake
sha256 "2c377ff6019ce251aecd9d0ad3cd4b44ff6cf79d451220470a881420b3cfe377"
sha256 "b8c33ce3535da6335325b4a967b575cec52ce03e9289c38a81c16171f0b6970a"
elsif Hardware::CPU.arm?
url "https://releases.captain.build/v#{version}/darwin/aarch64/captain", user_agent: :fake
sha256 "bf7bb95979277c40efea57db47d9abc8f538f5847d9cac74dd212db73331e347"
sha256 "3d0cb0968a606c14f7fcac1bfa8dc151969c14fb60235c18ae9183552871e9be"
end
else
if Hardware::CPU.intel?
url "https://releases.captain.build/v#{version}/linux/x86_64/captain", user_agent: :fake
sha256 "ea85bc9d9fef2bc8c0294ec475177ef0e2cccd3cf6b53c04aad374fa2fdc4c13"
sha256 "4b81783009896f487dd49bb5299a36dbcbcb26dd58ba47b1e28123899f98df49"
end
end

Expand Down
8 changes: 4 additions & 4 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
class CaptainAT1 < Formula
desc "Captain can detect and quarantine flaky tests, automatically retry failed tests, partition files for parallel execution, and more"
homepage "https://www.rwx.com/captain"
version "1.13.1"
version "1.13.3"

if OS.mac?
if Hardware::CPU.intel?
url "https://releases.captain.build/v#{version}/darwin/x86_64/captain", user_agent: :fake
sha256 "2c377ff6019ce251aecd9d0ad3cd4b44ff6cf79d451220470a881420b3cfe377"
sha256 "b8c33ce3535da6335325b4a967b575cec52ce03e9289c38a81c16171f0b6970a"
elsif Hardware::CPU.arm?
url "https://releases.captain.build/v#{version}/darwin/aarch64/captain", user_agent: :fake
sha256 "bf7bb95979277c40efea57db47d9abc8f538f5847d9cac74dd212db73331e347"
sha256 "3d0cb0968a606c14f7fcac1bfa8dc151969c14fb60235c18ae9183552871e9be"
end
else
if Hardware::CPU.intel?
url "https://releases.captain.build/v#{version}/linux/x86_64/captain", user_agent: :fake
sha256 "ea85bc9d9fef2bc8c0294ec475177ef0e2cccd3cf6b53c04aad374fa2fdc4c13"
sha256 "4b81783009896f487dd49bb5299a36dbcbcb26dd58ba47b1e28123899f98df49"
end
end

Expand Down

0 comments on commit ef1e9a0

Please sign in to comment.