-
Notifications
You must be signed in to change notification settings - Fork 22
add arrow to contrib, move to sha256 #157
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
Open
poshul
wants to merge
26
commits into
master
Choose a base branch
from
add_arrow
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+247
−62
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
4728615
add arrow to contrib, move to sha256
poshul 22c2300
use newer boost ver
poshul 56fffd5
correct arrow file
poshul e505b42
check success of arrow compilation
poshul 2f16e61
clean up comments
poshul 5b96aeb
correct boost again
poshul 6c11379
boost?
poshul 5ba9230
use correct repo version
poshul f942b8e
f
poshul a551a9c
correct zip extract command
poshul a04ed85
Add thrift to main.yml
poshul a01a7aa
Refactor CMake setup conditions for ARM architecture
poshul 08a054d
download whole apache arrow zip
poshul bd334dc
Address review comments
poshul 78ea780
clean up comments
poshul cea7770
fix readme
poshul 4900c9f
Improve error handling in arrow build process
poshul 3df30b0
don't use relative path in dockerfile
poshul e20c134
Fix error message for arrow library build failure
poshul b382dbc
Allow parallel processing (including in coin-or) fix boost headers fo…
poshul c846eed
fix boost parallelism in ci address review comment
poshul 8924ef1
fix windows
poshul 278a705
Remove NUMBER_OF_JOBS configuration from CMake
poshul b26db63
fix windows part 2
poshul 50580f3
address review
poshul 32e568a
windows parallelism
poshul File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🌐 Web query:
GitHub Actions Windows runner NUMBER_OF_PROCESSORS bash environment variable💡 Result:
Short answer
How to read it in a workflow step
These reliably return the Windows value when running bash on a Windows runner. (docs.github.com)
Notes / caveats
If you want, I can give an exact workflow snippet showing each method.
Citations:
🏁 Script executed:
Repository: OpenMS/contrib
Length of output: 165
🏁 Script executed:
Repository: OpenMS/contrib
Length of output: 1752
Fix Windows CPU detection in bash shell.
Line 91 uses
$NUMBER_OF_PROCESSORSdirectly in bash, but this Windows environment variable is not available to the bash shell on GitHub Actions Windows runners (Git Bash/msys2). The code silently falls back to 4 cores (line 100), masking the availability of the actual CPU count.On Windows runners with bash,
NUMBER_OF_PROCESSORSmust be accessed via cmd.exe or PowerShell. Use one of these approaches:Any of these will correctly detect the actual Windows CPU count instead of defaulting to 4.
🤖 Prompt for AI Agents