-
Notifications
You must be signed in to change notification settings - Fork 81
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: build for macOS #431
Merged
Merged
fix: build for macOS #431
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ad2b981
set host to macos-12
FelixMoelder 53b11b1
set host to macos-13
FelixMoelder 3b2daff
update hts-sys
FelixMoelder 50f2396
set macos-latest
FelixMoelder 0e24617
fix type
johanneskoester 40793b8
fix internal insert size naming (isize vs isize_)
johanneskoester f9807c0
fix type
johanneskoester 1c89f12
fix
johanneskoester 2b901e0
fix
johanneskoester 9bb53d1
fix
johanneskoester a4f3a2d
fmt
johanneskoester 9a9b3d1
fix
johanneskoester 77d7052
fmt
johanneskoester 5eb729b
bump hts-sys
johanneskoester File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,29 +125,28 @@ jobs: | |
strategy: | ||
matrix: | ||
target: | ||
- intel-catalina | ||
- intel-bigsur | ||
- m1-bigsur | ||
- intel-monterey | ||
- intel-ventura | ||
- silicon-sonoma | ||
include: | ||
- target: intel-catalina | ||
os: macOS-10.15 | ||
- target: intel-monterey | ||
os: macOS-12.0 | ||
toolchain_target: x86_64-apple-darwin | ||
toolchain: stable | ||
aux_args: "" | ||
default: false | ||
- target: intel-bigsur | ||
os: macOS-11.0 | ||
aux_args: --target x86_64-apple-darwin | ||
default: true | ||
- target: intel-ventura | ||
os: macOS-13.0 | ||
toolchain_target: x86_64-apple-darwin | ||
toolchain: stable | ||
aux_args: --target x86_64-apple-darwin | ||
default: true | ||
- target: silicon-sonoma | ||
os: macOS-14.0 | ||
toolchain_target: aarch64-apple-darwin | ||
toolchain: stable | ||
aux_args: "" | ||
default: false | ||
# TODO enable again and try to find out why this fails | ||
# - target: m1-bigsur | ||
# os: macOS-11.0 | ||
# toolchain_target: aarch64-apple-darwin | ||
# toolchain: nightly | ||
# aux_args: --target aarch64-apple-darwin | ||
# default: true | ||
|
||
steps: | ||
- name: Checkout repository | ||
|
@@ -158,19 +157,14 @@ jobs: | |
- name: Install stable toolchain | ||
uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
toolchain: ${{ matrix.toolchain }} | ||
target: ${{ matrix.toolchain_target }} | ||
override: true | ||
default: ${{ matrix.default }} | ||
|
||
- name: Install htslib dependencies | ||
run: brew install bzip2 zlib xz curl-openssl | ||
|
||
#- uses: actions-rs/[email protected] | ||
# with: | ||
# toolchain: ${{ matrix.toolchain }} | ||
# target: ${{ matrix.toolchain_target }} | ||
# #override: true | ||
# default: ${{ matrix.default }} | ||
|
||
- name: Test | ||
uses: actions-rs/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Was this an intentional change that
bindgen
changed from an optional dependency to a required dependency ofrust-htslib
?