-
Notifications
You must be signed in to change notification settings - Fork 21
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
Including details about prints of simulate #431
Including details about prints of simulate #431
Conversation
@rkierulf There seems to be a few minor issues with the benchmarks/tests. Are we still running the codecov for Metal? (I see the "Cannot submit coverage without Codecov key." in https://buildkite.com/julialang/komamri-dot-jl/builds/810). If the PR is from a fork and not coming from "us", the benchmark.yml (GitHub) job fails due to not having the |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #431 +/- ##
==========================================
- Coverage 90.52% 88.73% -1.80%
==========================================
Files 51 51
Lines 2787 2787
==========================================
- Hits 2523 2473 -50
- Misses 264 314 +50
Flags with carried forward coverage won't be shown. Click here to find out more.
|
It seems that the codecov is not being processed properly for the GPU tests. In all pipelines it says "🔑 Skipping decryption of secrets" instead of "🔑 Decrypting secrets". |
We shouldn't be running codecov for Metal since the step in runtests.yml is
missing the plugin. For the Benchmark.yml file, I think we can prevent the
action from running for external pull requests if we change the if
statement in line 35 to:
if: "!contains(github.event.head_commit.message, '[skip benchmarks]') && {{
github.event.pull_request.head.repo.full_name ==
github.event.pull_request.base.repo.full_name }}"
community/community#26829
For the codecov issue with the GPU tests, this seems to have started
recently, since none of the builds prior to #806 had this issue, but all of
the builds starting from yesterday (#807+) do. I don't see codecov
decryption errors for the other Julialang pipelines however, so it doesn't
seem to be a general Buildkite issue. Is there anything with the repository
that changed between Friday and yesterday?
Ryan
…On Tue, Jul 9, 2024 at 10:44 AM Carlos Castillo Passi < ***@***.***> wrote:
It seems that the codecov is not being processed properly for the GPU
tests. In all pipelines it says "🔑 Skipping decryption of secrets" instead
of "🔑 Decrypting secrets".
—
Reply to this email directly, view it on GitHub
<#431 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BDSPWWMNR5FMSAC2D2N3JTTZLQAO3AVCNFSM6AAAAABKSFOUXOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEMJYGA2TIMJQGQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
14ae297
to
a537cb0
Compare
I don't think I have changed anything :(. I think it could be related to a problem with the codecov_token in external PRs. Maybe I need to change something in the Buildkite config (?). |
No description provided.