-
-
Notifications
You must be signed in to change notification settings - Fork 68
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
Add external types exposed through public api check for CI #434
base: main
Are you sure you want to change the base?
Conversation
|
||
- name: Check Exported API | ||
run: | | ||
cargo install --locked cargo-check-external-types |
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 is going to rebuild on every PR update, which is going to be horrifically slow. The tool's doesn't offer prebuilt binaries, and it's not part of cargo-quickinstall
's prebuilt list either.
Almost tempted to not use it over this, to be honest.
What do you think?
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.
I'm not super upset over it as it takes approximately the same 2 minutes to run the tests. We can also either ask them to offer prebuilt binaries or just build it ourselves on every commit in a different repo similar to what cargo-quickinstall does.
Is there any way we can ask them to add it to cargo-quickinstall?
Not sure, check that project's repo? There might be a way to request new
crates to be added.
…On Sat, Aug 5, 2023, 11:08 PM u9g ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In .github/workflows/ci.yml
<#434 (comment)>:
> + steps:
+ - name: Checkout
+ uses: ***@***.***
+ with:
+ persist-credentials: false
+
+ - name: Install rust
+ uses: ***@***.***
+ with:
+ toolchain: "nightly-2023-05-31"
+
+ - uses: ***@***.***
+
+ - name: Check Exported API
+ run: |
+ cargo install --locked cargo-check-external-types
I'm not super upset over it as it takes approximately the same 2 minutes
to run the tests. We can also either ask them to offer prebuilt binaries or
just build it ourselves on every commit in a different repo similar to what
cargo-quickinstall does.
Is there any way we can ask them to add it to cargo-quickinstall?
—
Reply to this email directly, view it on GitHub
<#434 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAR5MSSYID2WSI7IAFOL53TXT4DDTANCNFSM6AAAAAA3FTEENM>
.
You are receiving this because your review was requested.Message ID:
***@***.***>
|
15f64a4
to
64ebfd5
Compare
No description provided.