Skip to content
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

Fix MacOS CI #2466

Merged
merged 3 commits into from
Jan 4, 2024
Merged

Fix MacOS CI #2466

merged 3 commits into from
Jan 4, 2024

Conversation

thomas-bc
Copy link
Collaborator

@thomas-bc thomas-bc commented Jan 4, 2024

Related Issue(s) #2462
Has Unit Tests (y/n)
Documentation Included (y/n)

Change Description

Should fix #2462

Limiting to 2 parallel jobs for macOS CI. Keeping the random(1, 100) for non-macOS runs.
2 was chosen very much arbitrarily as it seems to pass, while I've seen runs with 4 parallel jobs fail. Let me know if you have any input on that value.

Future Work

Be on the lookout for CI failures.

@thomas-bc thomas-bc marked this pull request as ready for review January 4, 2024 21:07
@@ -17,7 +17,7 @@ export FPUTIL_TARGETS=("generate" "generate --ut" "build" "build --all" "check -
function fputil_action {
export WORKDIR="${1}"
export TARGET="${2}"
let JOBS="${JOBS:-$(( ( RANDOM % 9 ) + 1 ))}"
let JOBS="${JOBS:-$(( ( RANDOM % 100 ) + 1 ))}"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LeStarch LeStarch merged commit 5d68e1a into nasa:devel Jan 4, 2024
34 checks passed
@thomas-bc thomas-bc deleted the issue-2462 branch January 4, 2024 21:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

MacOS CI repeated fails
2 participants