-
-
Notifications
You must be signed in to change notification settings - Fork 122
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
[Debug] Test s390x
environment
#428
Conversation
5bcd431
to
f4cab16
Compare
Welp it ran, but it is failing on other stuff. Locally I seem to have more luck reproducing the error: FROM s390x/fedora:latest
RUN dnf install -y git cargo
RUN git clone https://github.com/maciejhirsz/logos /logos
WORKDIR /logos
CMD ["cargo", "test", "--workspace", "--verbose"] You need to pass $ podman build --arch s390x -f ./Containerfile -t debug:logos-s390x
$ podman run --arch s390x debug:logos-s390x
Finished `test` profile [unoptimized + debuginfo] target(s) in 20m 40s
Running `/logos/target/debug/deps/logos-46a46a770371776e`
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
Running `/logos/target/debug/deps/logos_cli-e073d29f76d42718`
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
Running `/logos/target/debug/deps/tests-19e02148e7c31992`
running 5 tests
test test_codegen_fail_check ... ok
test test_codegen_check ... ok
test test_codegen_format ... FAILED
test test_codegen ... ok
test test_codegen_check_format ... FAILED
failures: |
Same issue when running |
There seem to be be many issues, probably unrelated to this crate, see for example: error: the compiler unexpectedly panicked. this is a bug. |
Yes, I reckon it's an issue with the GH action environment. Running it locally I am able circumvent these. I couldn't find a solution to run these in a GH Actions environment. I can setup such that it runs in |
Any alternative is fine as long as the error message / issue is the same (I mean, any bug is worth being reported), and that we can reproduce it. |
You can navigate the CI in my fork: https://github.com/LecrisUT/logos/tree/debug/s390x Navigate to the copr build page (example) and in the log of |
Ok, this variant finally successfully failed: builder-live.log |
Resolved with #431 |
@jeertmans here is a debug workflow that would hopefully work. I'm not deeply involved into rust so I hope you can help compensate for that