Skip to content
Open
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
11 changes: 7 additions & 4 deletions recipes/mist/recipe.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
context:
version: "25.5.0"
version: "25.6.0"
mojo_version: "=0.25.6"

package:
name: "mist"
version: ${{ version }}

source:
- git: https://github.com/thatstoasty/mist.git
rev: 1c89c766f2827607c2fe64cfdc13b8680d55d6c0
rev: 21c2b6ccaf6b34fabaad89113858a41b413ba1e5

build:
number: 0
script:
- mojo package mist -o ${{ PREFIX }}/lib/mojo/mist.mojopkg
requirements:
host:
- max =25.5
- mojo-compiler ${{ mojo_version }}
Copy link

Copilot AI Oct 29, 2025

Choose a reason for hiding this comment

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

[nitpick] The host requirements section uses the template variable ${{ mojo_version }} while other recipes in the codebase (e.g., emberjson/recipe.yaml) use the hardcoded version =0.25.6 in the host section and the template variable in the build section. For consistency, consider using - mojo-compiler =0.25.6 in the host section, matching the pattern used in emberjson.

Suggested change
- mojo-compiler ${{ mojo_version }}
- mojo-compiler =0.25.6

Copilot uses AI. Check for mistakes.
build:
- mojo-compiler ${{ mojo_version }}
run:
- ${{ pin_compatible('max') }}
- ${{ pin_compatible('mojo-compiler') }}

tests:
- script:
Expand Down
Loading