-
Notifications
You must be signed in to change notification settings - Fork 48
correctly take unstable-features #128
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
Conversation
r? @ryankurte (rust-highfive has picked a reviewer for you, use r? to override) |
ci errors are one of the issues with not having a lockfile :), we could specify --locked to avoid this. can bump MSRV |
I think that's probably the way to go... |
da08b60
to
9810486
Compare
done, we should get a release out after this too |
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.
LGTM, thanks.
bors r+
128: correctly take unstable-features r=therealprof a=Emilgardis fixes #127 Co-authored-by: Emil Gardström <[email protected]>
Timed out. |
interesting. bors retry |
128: correctly take unstable-features r=therealprof a=Emilgardis fixes #127 Co-authored-by: Emil Gardström <[email protected]>
bors cancel the bors matrix is looking for version number |
Canceled. |
bors try should fail |
tryBuild failed: |
.github/workflows/ci.yml
Outdated
if: always() | ||
steps: | ||
- name: Result | ||
run: | | ||
jq -C <<< "${needs}" | ||
"$(jq -r 'all(.result as $result | (["success"] | contains([$result])))' <<< "${needs}")" | ||
env: | ||
needs: ${{ toJson(needs) }} |
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.
technically, this is not needed. Could simply be
if: always() | |
steps: | |
- name: Result | |
run: | | |
jq -C <<< "${needs}" | |
"$(jq -r 'all(.result as $result | (["success"] | contains([$result])))' <<< "${needs}")" | |
env: | |
needs: ${{ toJson(needs) }} | |
steps: | |
- name: Result | |
run: exit 0 |
2ecefc9
to
d5e977d
Compare
d5e977d
to
538a26d
Compare
538a26d
to
87d47a6
Compare
bumping msrv due to rust-lang/rust#105167 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.
thanks, lgtm!
bors r+
Build succeeded:
|
fixes #127