-
-
Notifications
You must be signed in to change notification settings - Fork 105
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
ci: add support for loongarch64 targets #172
Conversation
@@ -122,13 +122,13 @@ jobs: | |||
- name: Show byte order for debugging | |||
run: ${{ env.CARGO }} test --verbose $TARGET byte_order -- --nocapture | |||
- name: Run tests | |||
run: ${{ env.CARGO }} test --verbose | |||
run: ${{ env.CARGO }} test --verbose $TARGET |
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 missed before this?
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.
Possibly, It's just a diagnostic and it's rarely anything other than little endian, so definitely easy to miss.
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 really don't want to get into the business of pinning to specific cross
commits. And I don't want to add a target to CI if I can't rely on it working. Maybe Rust support for loongarch64
needs to mature a bit first.
@@ -122,13 +122,13 @@ jobs: | |||
- name: Show byte order for debugging | |||
run: ${{ env.CARGO }} test --verbose $TARGET byte_order -- --nocapture | |||
- name: Run tests | |||
run: ${{ env.CARGO }} test --verbose | |||
run: ${{ env.CARGO }} test --verbose $TARGET |
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.
Possibly, It's just a diagnostic and it's rarely anything other than little endian, so definitely easy to miss.
I can understand you. What I want to clarify is that having more crates support LoongArch is indeed an effective way to make it more mature, and this certainly includes the excellent project I think it would also be fine to wait until the SIMD intrinsics for LoongArch become stable before adding CI support. |
The latest release of
cross
does not support the LoongArch target yet. This PR switches to installing a pinned commit from Git.