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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ github.token }}
HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.actor }}
PULL_REQUEST: ${{ github.event.pull_request.number }}
run: brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY $PULL_REQUEST"

- name: Push commits
uses: Homebrew/actions/git-try-push@master
Expand All @@ -32,4 +32,4 @@ jobs:
if: github.event.pull_request.head.repo.fork == false
env:
BRANCH: ${{ github.event.pull_request.head.ref }}
run: git push --delete origin $BRANCH
run: git push --delete origin "$BRANCH"
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test-bot:
strategy:
matrix:
os: [ubuntu-22.04, macos-12, macos-14]
os: [ubuntu-22.04, macos-14, macos-15, macos-26]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Homebrew
Expand All @@ -17,7 +17,7 @@ jobs:

- name: Cache Homebrew Bundler RubyGems
id: cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand Down
15 changes: 5 additions & 10 deletions Casks/volume-cartographer.rb
Original file line number Diff line number Diff line change
@@ -1,23 +1,18 @@
cask "volume-cartographer" do

version "2.27.0"
version "2.28.0-rc.1"

on_sonoma :or_newer do
depends_on macos: ">= :sonoma"
url "https://github.com/educelab/volume-cartographer/releases/download/v#{version}/VC-#{version}-Darwin.zip"
sha256 "6d4dea1aa21e145f2e1fc36f59d279151e028238d00449c63603197651b6c8db"
end
sha256 "2712a01e2601a5740809baf2d658c9d2a6101d9c08874dd318fb490e8f9de346"

on_ventura :or_older do
depends_on macos: ">= :monterey"
url "https://github.com/educelab/volume-cartographer/releases/download/v#{version}/VC-#{version}-Darwin-macOS12.zip"
sha256 "b8f9e270a306cbcf6327468356be913ff50d3ac70e31ac5b0157a0f750bb7419"
url "https://github.com/educelab/volume-cartographer/releases/download/v#{version}/VC-#{version}-Darwin.zip"
end

name "Volume Cartographer"
desc "Virtual unwrapping toolkit"
homepage "https://github.com/educelab/volume-cartographer"

depends_on macos: ">= :sonoma"

app "VC.app"
binary "CannySegment.app/Contents/MacOS/CannySegment", target: "vc_canny_segment"
binary "MeshProject.app/Contents/MacOS/MeshProject", target: "vc_projection"
Expand Down
Loading