-
Notifications
You must be signed in to change notification settings - Fork 13
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
Use Ubuntu Noble instead of Focal #741
Comments
Compilation fails: https://app.travis-ci.com/github/3drepo/3drepobouncer/jobs/630829248?serverType=git
|
@Charence this is probably to do with the default gcc version it's using It's also a moving block right now since @sebjf is working on #740 Can you separate the 2 pieces of work? lets upgrade mongo to v8 as a separate issue to upgrading linux (the mongo stuff should have less complications), and maybe @sebjf can give better advice on what gcc version etc is needed with all the recent changes (or would it be easier if you do it @sebjf ?) |
@carmenfan Yes, I just spoke to @sebjf about it and he mentioned
and
|
@Charence as I said, let's park this for now and upgrade mongo in a separate issue. No point trying to force everything in the old version when Sebastian already fixed it |
Upgrade MongoDB in #742 |
Now getting some different compilation errors:
|
FYI: Jammy (22.04) also has the same compilation issues. |
@Charence I am seeing the same thing on my new 24.04 vm - I am working on it now! |
I have got it to compile, but some of the dependencies have secondary dependencies that are too old (e.g. mongo driver, even though that was compiled recently, so I am going to recompile them as necessary on noble) |
Cool! Thanks! |
@Charence, do you know what the situation is with thrift? When I try to compile synchro reader, it fails - I assume 3drepoSynchroReader is targeting a newer version of thrift that is on tests, but doesn't use any newer parts of the shared library? |
When I try to build 3drepoSynchroReader (because Boost is too old 🙄), I get the following
However, even in the latest Thrift (0.21), I don't see that header... EDIT: Nevermind I have got it compiling with USE_ORIGINAL_THRIFT - it was a CMake caching problem. |
OK I have it building and I can start the client (not run through the unit tests yet). I will package up the updated dependencies into a new folder in tests for |
@Charence, do you want to give it another try? I have updated travis.yml as well so will be interesting to see if that works.. |
@sebjf Thanks! Looks like it has got much further on Travis but is failing on a Synchro test: https://app.travis-ci.com/github/3drepo/3drepobouncer/jobs/631500497 |
Hmm not sure if this is because I built 3drepoSynchroReader with USE_ORIGINAL_THRIFT. Since thats the only failed test it's probably worth just waiting for @carmenfan to come back and say than try to guess! |
@sebjf FYI I've managed to build this branch successfully using Docker on 24.04: |
@carmenfan @Charence, I printed the result of dlerror() in plugin loader & found the reason Synchro is failing is due to missing dependencies. Once I made sure it could find the local ones, it began failing to load libssl.so.1.1, which will have been removed from 24.04 because it has been EOL'd. Ubuntu's package manager how has thrift included, so we can use that version. However, after thrift 0.12.0 c98 was deprecated and the shims in stdcxx.h removed in favour of C++ features. While this would otherwise be good news (no more Boost dependencies as well!), that header is used in the SynchroAPI auto generated files like this one: https://github.com/3drepo/SynchroReader/blob/9a9ef980899b88651a2c4039d0ee58aa38971a92/plugins/6.3/source/customThrift/synchroAPI/SynchroAPITypes_types.h#L26 Not sure whats best to do here. We could try to compile thrift 0.12 with OpenSSL 3. That feels like kicking the can down the road and might not even be possible. However it seems even the newest Synchro plugins (6.5.3.7) are still autogenerating by thrift 0.12 so if we tried to modify them, we'd end up having to do it for all future ones too until Synchro update their toolchain. (Unless we generate those files from the thrift compiler? I don't know enough about Synchro!) |
FYI I have managed to compile thrift-0.12.0 under 24.04, and then the synchro reader plugins, and now they seem to load OK. The tests are still failing but they look like they're coming from 3drepobouncerTest proper and are to do with the tests environment on this new VM so I'll look into that next. |
@sebjf Yea you guessed it 😆 I'm the one who generate the code in the originalThrift version of the library Looks like you've resolved it now, but instructions are here if you ever need it https://github.com/3drepo/SynchroReader/wiki/Adding-new-versions-of-Synchro With the synchro source here https://asitesol.sharepoint.com/sites/3DRepoTeamFolder/Shared%20Documents/Forms/AllItems.aspx?id=%2Fsites%2F3DRepoTeamFolder%2FShared%20Documents%2FRelease%2F3drepobouncer%2FSynchro&viewid=60884782%2D12a7%2D4f6f%2Db426%2Debefd8aef345 |
Ah didn't check the wiki 🙈, thank you! The reader with the newly built thrift 0.12.0 passes the unit tests so I can package that up & then that should be it. Good to know we are not stuck when that eventually stops working though! |
This is passing the unit and integration tests, but failing because like thrift, cryptolens (or a dependency) is linking against OpenSSL1. This is another thing I don't much about but will look into recompiling it as well... |
Hi @carmenfan, cryptoLens (3drepo_current) has built OK on noble so I've updated the tests repo and we'll see what travis does. I only had to make one change, and that was to add I can push that change direct to your fork if you like (if you give me write permissions), or can just make it again yourself if you prefer! (For completeness, cryptoLens has not made that change upstream either... https://github.com/Cryptolens/cryptolens-cpp/blob/master/include/cryptolens/ActivationData.hpp) |
@sebjf I've transferred it to 3drepo https://github.com/3drepo/cryptolens-cpp So feel free to make the commit 😆 thanks! |
Upgrade from 20.04 to 24.04
The text was updated successfully, but these errors were encountered: