-
-
Notifications
You must be signed in to change notification settings - Fork 56
Fix opencoarrays_version in windows-install.sh #441
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
Conversation
@zbeekman I went back to commits as old as late April and found that the Windows installer has been broken for a rather long time. This caused me to realize that we could actually be testing this script in Travis-CI. Because the script runs under Windows Subsystem for Linux, it's actually just a bash script that expects to run on Ubuntu 16.04 or later. There is nothing in the script specific to Windows. Please set up for Travis-CI to test this script if it's easy to do so. Let me know if I should create an issue for this. |
Codecov Report
@@ Coverage Diff @@
## master #441 +/- ##
=======================================
Coverage 35.29% 35.29%
=======================================
Files 3 3
Lines 2105 2105
Branches 350 350
=======================================
Hits 743 743
Misses 1154 1154
Partials 208 208 |
The shebang at the start of the file is wrong: https://github.com/sourceryinstitute/OpenCoarrays/pull/441/files#diff-761c977a48b8e2a4ee665b286772ca5dR1 missing a also, shellcheck has many warnings, most common of which is to use
|
also style issues:
They show up in red when you actually run the script... the ASCII control characters to produce the red don't copy here on Github... |
@rouson hmmm it also appears that git wasn't configured correctly, so it didn't record the author info correctly. As a consequence, it thinks that the CLA needs to be signed again. I can probably forcibly fix this myself. |
yeah, it looks like you didn't configure git properly in a new environment:
|
45171d0
to
61de5e4
Compare
Summary of changes
Updated the definition of
opencoarrays_version
inwindows-install.sh
to reflect a months-old change in version numbering.Rationale for changes
Build on Windows Subsystem for Linux was failing.
Additional info and certifications
This pull request (PR) is a:
I certify that
- Increasing test coverage for all feature-addition PRs
- Increasing test coverage for all bug-fix PRs for which there
does not already exist a related test that failed before the PR
- At least maintaining test coverage for all other PRs
- Ensuring that all tests pass when run locally
- Naming PR to indicate work in progress (WIP) and to attach the PR
to the appropriate bug report or feature request issue
- White space (no trailing white space or white space errors may
be introduced)
- Commenting code where it is non-obvious and non-trivial
- Logically atomic, self consistent and coherent commits
- Commit message content
- Waiting 24 hours before self-approving the PR to give another
OpenCoarrays developer a chance to review my proposed code