-
Notifications
You must be signed in to change notification settings - Fork 14
ci: fix Julia 1.6 failure on macOS-latest (ARM64) #61
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,7 +61,7 @@ end | |
|
|
||
|
|
||
| function _seek(source::SndFileSource, offset::Integer, whence::Integer) | ||
| new_offset = sf_seek(source.filePtr, offset, whence) | ||
| new_offset = sf_seek(source.filePtr, sf_count_t(offset), whence) | ||
|
||
|
|
||
| if new_offset < 0 | ||
| error("Could not seek to $(offset) in file") | ||
|
|
||
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.
This exclusion completely removes Julia 1.6 testing from macOS. According to the issue description, Julia 1.6 supports x86_64 on macOS - it just doesn't support ARM64.
Consider using an Intel-based macOS runner (like macos-13) for Julia 1.6 instead of excluding it entirely. This would maintain test coverage for Julia 1.6 on macOS while avoiding the ARM64 compatibility issue. For example, you could add macos-13 to the os matrix and use an include to specifically pair Julia 1.6 with macos-13.