-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(.github): mismatch between CPU chip and binary name on macOS #401
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [actionlint] reported by reviewdog 🐶
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [actionlint] reported by reviewdog 🐶 commitlint-rs/.github/workflows/release.yaml Line 141 in 547eff6
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -26,11 +26,11 @@ jobs: | |||||||||||||||||||||||||||||||
rust_target: x86_64-unknown-linux-gnu | ||||||||||||||||||||||||||||||||
ext: "" | ||||||||||||||||||||||||||||||||
args: "" | ||||||||||||||||||||||||||||||||
- os: macos-latest | ||||||||||||||||||||||||||||||||
- os: macos-13 (Intel x86) | ||||||||||||||||||||||||||||||||
rust_target: x86_64-apple-darwin | ||||||||||||||||||||||||||||||||
ext: "" | ||||||||||||||||||||||||||||||||
args: "" | ||||||||||||||||||||||||||||||||
- os: macos-14 # beta (Apple Silicon) | ||||||||||||||||||||||||||||||||
- os: macos-latest (Apple Silicon) | ||||||||||||||||||||||||||||||||
rust_target: aarch64-apple-darwin | ||||||||||||||||||||||||||||||||
ext: "" | ||||||||||||||||||||||||||||||||
Comment on lines
+29
to
35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical: Fix invalid runner syntax in matrix configuration The current runner specifications contain invalid syntax that will cause workflow failures. GitHub Actions requires exact runner labels without parentheses. Apply this correction: - - os: macos-13 (Intel x86)
+ - os: macos-13 # Intel x86
rust_target: x86_64-apple-darwin
ext: ""
args: ""
- - os: macos-latest (Apple Silicon)
+ - os: macos-latest # Apple Silicon
rust_target: aarch64-apple-darwin
ext: ""
args: "" This change:
📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||
args: "" | ||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[actionlint] reported by reviewdog 🐶
the runner of "actions-rs/toolchain@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
commitlint-rs/.github/workflows/release.yaml
Line 48 in 547eff6