Skip to content
Draft
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
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-13]
os: [ubuntu-22.04, macos-15-intel]

runs-on: ${{ matrix.os }}

Expand All @@ -42,5 +42,8 @@ jobs:

- run: brew test-bot --only-tap-syntax

- run: brew audit --cask --strict --online coder/coder/mux
if: runner.os == 'macOS' && github.event_name == 'pull_request'

- run: brew test-bot --only-formulae
if: github.event_name == 'pull_request'
31 changes: 31 additions & 0 deletions Casks/mux.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
cask "mux" do
arch arm: "arm64", intel: "x64"

version "0.15.2"
sha256 arm: "4e0b9fefc123a3fb81fbd91d9e787bdb73813779985dc5cf3f572052def07a83",
x86_64: "76e73b8aa2cd67d8618aa6d56060554967704c58f1393133b7b8e783b6ca85f4",
x86_64_linux: "76e73b8aa2cd67d8618aa6d56060554967704c58f1393133b7b8e783b6ca85f4",
arm64_linux: "4e0b9fefc123a3fb81fbd91d9e787bdb73813779985dc5cf3f572052def07a83"
Comment on lines +7 to +8
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

having identical linux hashes is definitely incorrect


url "https://github.com/coder/mux/releases/download/v#{version}/mux-#{version}-#{arch}.dmg",
verified: "github.com/coder/mux/"
name "Mux"
desc "Desktop app for parallel agent workflows"
homepage "https://mux.coder.com/"

auto_updates true
depends_on macos: ">= :monterey"

app "mux.app"

uninstall quit: "com.mux.app"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we definitely do not own mux.com. is this actually our bundle identifier? it should be com.coder.mux instead


zap trash: [
"~/Library/Application Support/mux",
"~/Library/Caches/com.mux.app",
"~/Library/HTTPStorages/com.mux.app",
"~/Library/Logs/mux",
"~/Library/Preferences/com.mux.app.plist",
"~/Library/Saved Application State/com.mux.app.savedState",
]
end
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Provides official formulae for [Coder] products
brew install coder/coder/coder
```

#### Install Mux

```sh
brew install --cask coder/coder/mux
```

#### Install Coder v1 (legacy)

```sh
Expand Down