-
Notifications
You must be signed in to change notification settings - Fork 62
Conversation
Kicked CI. We're getting linker failures in |
Clear all the clippy warnings introduce by a recent clippy update.
acca8ba
to
4fd4cb1
Compare
Rebased on #75, seems to work. |
@@ -27,7 +28,7 @@ jobs: | |||
- name: Running tests on ${{ matrix.toolchain }} |
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.
You can do this to avoid running on macos:
if: ${{ matrix.os != 'macOS-latest' }}
Also, I've seen it spelled macos-latest
before, but maybe that doesn't matter.
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.
How do I prevent specifically rustc 1.41 from running on macos?
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.
Ah, sorry, I didn't realize that the combination of macos and 1.41. I didn't test this, but it should be something like:
if: ${{ !(matrix.os == 'macOS-latest' && matrix.toolchain == `1.4.1`) }}
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.
It's a huge PITA to test github actions :) bash is easier.
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.
ACK 4fd4cb1
Clear all the clippy warnings introduce by a recent clippy update.