-
Notifications
You must be signed in to change notification settings - Fork 301
CMake: Bring nczarr dependency when enabling S3 in line with autotools #3149
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
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
01fe8d8
Creat PR to support refactor of code.
DennisHeimbigner 0aaa174
Update RELEASE_NOTES
DennisHeimbigner 505f940
Finish refactoring NC_s3sdkclose
mannreis ff9710f
Finish refactoring NC_s3sdklist & NC_s3sdklistall
mannreis 0949a06
Add NC_freeenvv to libdispatch
mannreis 7598ad0
Rename & move ncutil.h to include/netcdf_vutils.h
mannreis 355e453
CI: Enable S3 on the CI
mannreis d240593
CI: Enable S3 for CYGWIN workflow
mannreis 8a4284a
CI: Enable S3 for MINGW workflow
mannreis 97a6b90
Revert "CI: Enable S3 for MINGW workflow"
mannreis 9eb36ef
CMake: Fix plugin install variable
mannreis 5e0b94f
Merge https://github.com/Unidata/netcdf-c into patch-3090
WardF 42dbe33
CMake: Bring nczarr dependency when enabling S3 in line with autotool…
WardF e34efc9
Merge branch 'ncutil1.dmh' of https://github.com/DennisHeimbigner/net…
WardF d6d58b0
Attempting to merge #3094 and #3122 in a way that properly reconciles…
WardF 2f79a61
Add a missing include
WardF 85ac08e
Attempt to reconcile #3122 and #3094
WardF f4ccda0
Move s3-related workflows into docker-based regression testing.
WardF f96cc94
Examine test-suite.log files if cygwin tests fail.
WardF fe493c4
Update oc2/xxdr.c
WardF 6b8ecae
Update libdispatch/dinfermodel.c
WardF 2ff8310
Update libdispatch/ds3util.c
WardF bf756f2
Update nc_test/tst_inmemory.c
WardF 64a0dd5
Add zip to package install for Cygwin
WardF 585c2d9
Merge branch 's3-nczarr-cmake-ac-fix.wif' of github.com:WardF/netcdf-…
WardF 3e4f083
Add some verbose debug info to run_oldkeys.sh
WardF bfb2b94
Correct missing quote.
WardF c93f18c
Cygwin: install (un)zip dependencies to fix unzip `cannot find or open`
mannreis 91424d7
Modified upload artifact key to be unique
WardF 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 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
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.
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 believe this is causing the build problem in: https://github.com/Unidata/netcdf-c/actions/runs/16181140174/job/45678589358?pr=3149#step:19:1518
By setting
S3on,NCZARRis turned on but it will still needHDF5/NC4therefore failing the build withNC3.I think the issue was with autotools only on CYGWIN, not in cmake. Going back to my pipeline: https://github.com/Unidata/netcdf-c/actions/runs/15902006750/job/44847012519#step:13:686
The
libcryptosymbols were not being found when--enable-s3and--disable-nczarrcombined.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.
@WardF, to address this comment I've added a few modifications to
configure.acthat you bring in via WardF#2