-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Make some global variables constant #78
base: main
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## main #78 +/- ##
==========================================
+ Coverage 79.13% 79.27% +0.13%
==========================================
Files 6 6
Lines 580 579 -1
==========================================
Hits 459 459
+ Misses 121 120 -1
Continue to review full report at Codecov.
|
@staticfloat Would it be alright, for this repository, for us to allow Buildkite to run on PRs from forks? |
@@ -89,16 +89,15 @@ function select_executor(verbose::Bool) | |||
error("Could not find any available executors for $(triplet(HostPlatform()))!") | |||
end | |||
|
|||
_preferred_executor = nothing | |||
const _preferred_executor = Ref{Union{Nothing, (x->Type{x}).(all_executors)...}}(nothing) |
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.
Not sure this helps anything in practice, all_executors
has already three elements, with more possibly to come.
I have no way to check whether I broke something, tests are already broken for me (#77).