-
Notifications
You must be signed in to change notification settings - Fork 143
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
Update to Gradle 8; resuscitate CI #238
Open
MrDOS
wants to merge
20
commits into
NeuronRobotics:master
Choose a base branch
from
MrDOS:update-to-gradle-8
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.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d0e1a27
Linux ARM natives: add FP requirement to arch.
MrDOS 64833b7
macOS natives: don't need to link Java framework.
MrDOS e542631
macOS natives: specifically target Mac OS X 10.7.
MrDOS 6179070
CI: use evergreen runners; update actions.
MrDOS e10feb7
CI: build for FreeBSD 11, including arm64.
MrDOS eef5733
Gradle: apply all of the plugins together.
MrDOS 84a4365
Gradle: remove the deprecated JCenter repository.
MrDOS 712e484
Gradle: remove obsolete reference to `libs/` dir.
MrDOS a2c9325
Gradle: remove unnecessary JAR configuration.
MrDOS 4cfddf5
Gradle: update dependency configurations names.
MrDOS f5b383d
Gradle: use automatic Javadoc/source archives.
MrDOS 4155d5a
Gradle: switch to the maven-publish plugin.
MrDOS 63993ca
Gradle: optionally sign publication artifacts.
MrDOS 04072c2
Gradle: update to v8.3.
MrDOS 8200051
Gradle: build with a Java 8 toolchain.
MrDOS aa32d8d
Gradle: replace base plugin conventional props.
MrDOS f96d469
Gradle: update Bnd plugin to v6.4.0.
MrDOS 485d70b
Gradle: update Spotless plugin to v6.13.0.
MrDOS 92f2f5c
Gradle: use single-quoted strings where possible.
MrDOS bcb0063
Gradle: add Sam to the POM's developer list.
MrDOS 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
There are no files selected for viewing
This file contains 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 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.
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.
I would suggest pinning versions, generally as it ensures that a previous build can be re-built, later in time when "latest" changes
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.
I was actually hoping to use evergreen runner versions as a canary to help catch places where the build process accidentally relies on the default version of something in the runner image. IMO because GitHub frequently update tools within the runner images, just pinning the runner version alone doesn't guarantee much stability. I'm hoping that the other changes I've made make the runner version irrelevant to reproducibility:
-target
values for long-EOL'd OSes (right down to 10.0), so I think we should be fairly able to use just about any Xcode tools/macOS SDK and get a functionally-identical (if admittedly not byte-identical) product.I hear where you're coming from, though. It's tedious when a PR gets held up because the build system has shifted underneath you. I can change the jobs to
ubuntu-22.04
/macos-12
if you'd prefer.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.
cool, that works, thanks.